import { with_type, crud_type } from './api/crud.types' export const api = crud_type('api', []) export const graph = crud_type('graph', [ 'show_add_page_form', 'hide_add_page_form', ]) export const page = crud_type('page', []) export const tile = crud_type('tile', []) export const upload = crud_type('upload', []) export const site = with_type('site', [ 'set_site_title', ]) export const system = with_type('system', [ 'load_site', ]) export const init = '@@INIT'