forked from pinks/eris
webhooks #1
7
main.ts
7
main.ts
|
@ -4,7 +4,9 @@ import { ConsoleHandler } from "std/log/handlers.ts";
|
||||||
import { LevelName, setup } from "std/log/mod.ts";
|
import { LevelName, setup } from "std/log/mod.ts";
|
||||||
import { serveUi } from "./api/mod.ts";
|
import { serveUi } from "./api/mod.ts";
|
||||||
import { runAllTasks } from "./app/mod.ts";
|
import { runAllTasks } from "./app/mod.ts";
|
||||||
import { runBot } from "./bot/mod.ts";
|
// runbot shouldn't be needed for webhooks?
|
||||||
|
// import { runBot } from "./bot/mod.ts";
|
||||||
|
import "./bot/mod.ts";
|
||||||
|
|
||||||
const logLevel = Deno.env.get("LOG_LEVEL")?.toUpperCase() as LevelName ?? "INFO";
|
const logLevel = Deno.env.get("LOG_LEVEL")?.toUpperCase() as LevelName ?? "INFO";
|
||||||
|
|
||||||
|
@ -20,7 +22,8 @@ setup({
|
||||||
|
|
||||||
// run parts of the app
|
// run parts of the app
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
runBot(),
|
// runbot shouldn't be needed for webhooks?
|
||||||
|
// runBot(),
|
||||||
runAllTasks(),
|
runAllTasks(),
|
||||||
serveUi(),
|
serveUi(),
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Reference in New Issue