diff options
Diffstat (limited to 'src/state/env.ts')
-rw-r--r-- | src/state/env.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/state/env.ts b/src/state/env.ts index 90a2cab5e..59c0554a2 100644 --- a/src/state/env.ts +++ b/src/state/env.ts @@ -4,8 +4,11 @@ */ import {getEnv, IStateTreeNode} from 'mobx-state-tree' +import {API} from '../api' export class Environment { + api = new API() + constructor() {} async setup() {} |