Files: ca718f616a051e93adeb22faa3fc06646f667973 / profiles / actions.js
240 bytesRaw
1 | const { Action } = require('inux') |
2 | |
3 | const SET_ONE = Symbol('setOne') |
4 | const FETCH_ONE = Symbol('fetchOne') |
5 | |
6 | const setOne = Action(SET_ONE) |
7 | const fetchOne = Action(FETCH_ONE) |
8 | |
9 | module.exports = { |
10 | SET_ONE, |
11 | FETCH_ONE, |
12 | setOne, |
13 | fetchOne |
14 | } |
15 |
Built with git-ssb-web