From ee01a689e255bcf8775387b3d5e4e8a6577908a3 Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Mon, 8 Aug 2022 22:55:14 +0200 Subject: rename initDatabase to clarify function --- gateway/src/Server.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gateway/src/Server.ts') diff --git a/gateway/src/Server.ts b/gateway/src/Server.ts index 254820c9..82fbeba2 100644 --- a/gateway/src/Server.ts +++ b/gateway/src/Server.ts @@ -1,6 +1,6 @@ import dotenv from "dotenv"; dotenv.config(); -import { closeDatabase, Config, initDatabase, initEvent } from "@fosscord/util"; +import { closeDatabase, Config, getOrInitialiseDatabase, initEvent } from "@fosscord/util"; import ws from "ws"; import { Connection } from "./events/Connection"; import http from "http"; @@ -46,7 +46,7 @@ export class Server { } async start(): Promise { - await initDatabase(); + await getOrInitialiseDatabase(); await Config.init(); await initEvent(); if (!this.server.listening) { -- cgit 1.5.1