Remove more dependencies

This commit is contained in:
Marc Campbell
2019-05-16 00:24:48 +00:00
parent 3ee4587643
commit 95a73da133
3 changed files with 2 additions and 559 deletions

View File

@@ -1,7 +1,6 @@
import * as util from "util";
import { Server } from "../server/server";
import { logger } from "../logger";
import * as Sentry from "@sentry/node";
import { param } from "../util";
exports.name = "hooks";
@@ -23,10 +22,5 @@ async function main(argv): Promise<any> {
process.exit();
});
Sentry.init({
dsn: param.get("SENTRY_DSN_API"),
environment: param.get("ENVIRONMENT"),
});
await new Server().start();
}