From 467d1b58bd753c8925ffb97c50df7843b48b2dd8 Mon Sep 17 00:00:00 2001 From: Yuzu Date: Tue, 14 Sep 2021 09:58:11 -0700 Subject: [PATCH] Create index.ts --- src/index.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/index.ts diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..fe2e2a5 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,10 @@ +import App from './providers/App'; +import NativeException from './exception/NativeException'; + +NativeException.process(); + +App.loadENV(); +App.loadPrisma(); +App.loadDiscord(); + +export default App; \ No newline at end of file