diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-12 20:33:02 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-12 20:33:02 +0200 |
commit | 4f2596789875b894e5b45d7cfafcc7cf6ca46aef (patch) | |
tree | 20b4728a0ff390bd982f2346807f3176efc8c1f9 /util/src/index.ts | |
parent | Merge branch 'rtc' (diff) | |
download | server-4f2596789875b894e5b45d7cfafcc7cf6ca46aef.tar.xz |
:sparkles: util
Diffstat (limited to 'util/src/index.ts')
-rw-r--r-- | util/src/index.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/util/src/index.ts b/util/src/index.ts new file mode 100644 index 00000000..3565fb6b --- /dev/null +++ b/util/src/index.ts @@ -0,0 +1,10 @@ +export * from "./util/checkToken"; + +export * as Constants from "./util/Constants"; +export * from "./models/index"; +export * from "./util/index"; + +import Config from "./util/Config"; +import db, { MongooseCache, toObject } from "./util/Database"; + +export { Config, db, MongooseCache, toObject }; |