diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2019-11-26 19:50:28 -0500 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2019-11-26 19:50:28 -0500 |
commit | 328de7ab14cc56275082db0b3ffec8ad56258a3e (patch) | |
tree | bf697786b7b147944873bd3edaeed2077dd5c7ca /src/server/index.ts | |
parent | 96519f4537895edcd1a23f353322459de328a330 (diff) | |
parent | e324248724a130a84b459a072dc846f500f8d9b0 (diff) |
merge
Diffstat (limited to 'src/server/index.ts')
-rw-r--r-- | src/server/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server/index.ts b/src/server/index.ts index 9c48aca45..d02a6005e 100644 --- a/src/server/index.ts +++ b/src/server/index.ts @@ -21,6 +21,7 @@ import UploadManager from "./ApiManagers/UploadManager"; import { log_execution } from "./ActionUtilities"; import GeneralGoogleManager from "./ApiManagers/GeneralGoogleManager"; import GooglePhotosManager from "./ApiManagers/GooglePhotosManager"; +import DiagnosticManager from "./ApiManagers/DiagnosticManager"; export const publicDirectory = path.resolve(__dirname, "public"); export const filesDirectory = path.resolve(publicDirectory, "files") + "/"; @@ -55,6 +56,7 @@ function routeSetter({ isRelease, addSupervisedRoute }: RouteManager) { new UserManager(), new UploadManager(), new DownloadManager(), + new DiagnosticManager(), new SearchManager(), new PDFManager(), new DeleteManager(), |