mirror of
https://github.com/urbit/shrub.git
synced 2024-12-20 17:32:11 +03:00
23 lines
619 B
TypeScript
23 lines
619 B
TypeScript
import { Scry } from '../http-api/src'
|
|
import { Poke } from '../http-api/src/types';
|
|
import { Belt, Task, SessionTask } from './types';
|
|
|
|
export const pokeTask = (session: string, task: Task): Poke<SessionTask> => ({
|
|
app: 'herm',
|
|
mark: 'herm-task',
|
|
json: { session, ...task }
|
|
});
|
|
|
|
export const pokeBelt = (
|
|
session: string,
|
|
belt: Belt
|
|
): Poke<SessionTask> => pokeTask(session, { belt });
|
|
|
|
//NOTE scry will return string[]
|
|
// export const scrySessions = (): Scry => ({
|
|
// app: 'herm',
|
|
// path: `/sessions`
|
|
// });
|
|
//TODO remove stub once new backend lands
|
|
export const scrySessions = (): string[] => [''];
|