git ssb

2+

dinoworm ๐Ÿ› / ssb-graphviz



Tree: ca718f616a051e93adeb22faa3fc06646f667973

Files: ca718f616a051e93adeb22faa3fc06646f667973 / graph / actions.js

371 bytesRaw
1const { Action } = require('inux')
2
3const SET = Symbol('set')
4const SET_FOCUS = Symbol('setFocus')
5const FETCH = Symbol('fetch')
6const FOCUS = Symbol('focus')
7
8const set = Action(SET)
9const setFocus = Action(SET_FOCUS)
10const fetch = Action(FETCH)
11const focus = Action(FOCUS)
12
13module.exports = {
14 SET,
15 SET_FOCUS,
16 FETCH,
17 FOCUS,
18 set,
19 setFocus,
20 fetch,
21 focus
22}
23

Built with git-ssb-web