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

@ -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'