-
Notifications
You must be signed in to change notification settings - Fork 4
/
epic.js
30 lines (28 loc) · 950 Bytes
/
epic.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { combineEpics } from 'redux-observable'
import { epic as agents } from 'dogstack-agents'
// TODO: fix naming
import invited from './agents/dux/invited'
import { epic as tokens } from './tokens/dux/tokens'
import { epic as tokenConsumes } from './tokens/dux/tokenConsumes'
import { epic as taskPlans } from './tasks/dux/plans'
import { epic as taskWorks } from './tasks/dux/works'
import { epic as orders } from './ordering/dux/orders'
import { epic as orderIntents } from './ordering/dux/orderIntents'
import { epic as orderPlans } from './ordering/dux/orderPlans'
import { epic as products } from './supply/dux/products'
import { epic as priceSpecs } from './supply/dux/priceSpecs'
import { epic as resourceTypes } from './resources/dux/resourceTypes'
export default combineEpics(
agents,
invited,
tokens,
tokenConsumes,
orders,
taskPlans,
taskWorks,
products,
priceSpecs,
resourceTypes,
orderIntents,
orderPlans
)