diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-10 11:03:32 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-10 11:03:32 +0200 |
commit | 74bd98737acf89d9d56ee66a68694d82f591d591 (patch) | |
tree | b93c79b510a962316fb14a125cac6e177e600c53 /api/src/Server.ts | |
parent | :art: clean up dependencies (diff) | |
download | server-74bd98737acf89d9d56ee66a68694d82f591d591.tar.xz |
:art: clean up imports + classes
Diffstat (limited to 'api/src/Server.ts')
-rw-r--r-- | api/src/Server.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/api/src/Server.ts b/api/src/Server.ts index 12c1d6b4..19e3d245 100644 --- a/api/src/Server.ts +++ b/api/src/Server.ts @@ -1,13 +1,10 @@ -import { OptionsJson } from "body-parser"; import "missing-native-js-functions"; -import { Connection } from "mongoose"; import { Server, ServerOptions } from "lambert-server"; import { Authentication, CORS } from "./middlewares/"; import { Config, initDatabase, initEvent } from "@fosscord/util"; import { ErrorHandler } from "./middlewares/ErrorHandler"; import { BodyParser } from "./middlewares/BodyParser"; import { Router, Request, Response, NextFunction } from "express"; -import mongoose from "mongoose"; import path from "path"; import { initRateLimits } from "./middlewares/RateLimit"; import TestClient from "./middlewares/TestClient"; |