diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-04 17:39:54 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-04 17:39:54 -0500 |
commit | f333a90fab79d582bbb7f9114f0b005fdb1cae8b (patch) | |
tree | 631755be2dd6976e9d0efd90f33751c52a09ef37 /src/state/index.ts | |
parent | 8ae6e67eea8890f639dbaa9423e99cad5e28502f (diff) | |
download | voidsky-f333a90fab79d582bbb7f9114f0b005fdb1cae8b.tar.zst |
Update to the latest APIs
Diffstat (limited to 'src/state/index.ts')
-rw-r--r-- | src/state/index.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/state/index.ts b/src/state/index.ts index 87047721b..78c14714f 100644 --- a/src/state/index.ts +++ b/src/state/index.ts @@ -1,11 +1,8 @@ import {autorun} from 'mobx' -import AtpApi from '../third-party/api' +import {sessionClient as AtpApi} from '../third-party/api' import {RootStoreModel} from './models/root-store' import * as libapi from './lib/api' import * as storage from './lib/storage' -// import * as auth from './auth' TODO - -import {ShellModel} from './models/shell' const ROOT_STATE_STORAGE_KEY = 'root' const DEFAULT_SERVICE = 'http://localhost:2583' |