feat: add @ccms/database

Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
2020-06-02 18:00:26 +08:00
parent 16fcbfa69c
commit 79f151de5c
9 changed files with 147 additions and 1 deletions

View File

@ -21,6 +21,7 @@
"dependencies": {
"@ccms/container": "^0.7.0",
"@ccms/ployfill": "^0.7.0",
"@ccms/common": "^0.7.0",
"base64-js": "^1.3.1",
"source-map-builder": "^0.0.7"
},
@ -30,4 +31,4 @@
"rimraf": "^3.0.2",
"typescript": "^3.9.2"
}
}
}

View File

@ -0,0 +1,5 @@
export namespace database {
export const DataBaseManager = Symbol("DataBaseManager");
export const DataSource = Symbol("DataSource");
export const DataBase = Symbol("DataBase");
}

View File

@ -1,2 +1,3 @@
export * from './plugin'
export * from './server'
export * from './database'