*Change core.appServerStarted to core.appServer.started

This commit is contained in:
Derrick Hammer 2023-04-19 00:28:33 -04:00
parent 053eca0cf4
commit 38d6198628
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ export async function start() {
await app.listen({ port: config.uint("core.appport"), host: "0.0.0.0" });
getPluginAPI().emit("core.appServerStarted");
getPluginAPI().emit("core.appServer.started");
}
export function get(): FastifyInstance {