UNPKG

@platform/cell.tmpl

Version:

Template generator for CellOS.

12 lines (10 loc) 262 B
import { t } from '../../common'; import * as reduce from './reduce'; import * as epic from './epic'; /** * Initialize behavior controllers. */ export function init(args: { ctx: t.IAppContext; store: t.IAppStore }) { reduce.init(args); epic.init(args); }