summaryrefslogtreecommitdiff
path: root/src/Actions/actions.ts
blob: 62abb96484ffc971084f31031e2195e99cac4f0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import auth from './auth'
import entity from './entity'
import settings from './settings';

export const actions = {
    ...auth,
    ...entity,
    ...settings,
}

export default actions