This commit is contained in:
cutestnekoaqua 2023-02-11 00:40:04 +01:00
parent 1a714fb8e4
commit fadf8144de
No known key found for this signature in database
GPG key ID: 6BF0964A5069C1E0
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ import signupPending from "./private/signup-pending.js";
import discord from "./service/discord.js";
import github from "./service/github.js";
import twitter from "./service/twitter.js";
import koaBody from "koa-body";
import {koaBody} from "koa-body";
// Init app
const app = new Koa();

View file

@ -29,7 +29,7 @@ import fileServer from "./file/index.js";
import proxyServer from "./proxy/index.js";
import webServer from "./web/index.js";
import { initializeStreamingServer } from "./api/streaming.js";
import koaBody from "koa-body";
import {koaBody} from "koa-body";
export const serverLogger = new Logger("server", "gray", false);