*plugins need to load first

This commit is contained in:
Derrick Hammer 2022-09-09 06:18:14 -04:00
parent 522807d8af
commit 1143edfb81
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -7,8 +7,8 @@ import { loadPlugins } from "./plugin.js";
log.setDefaultLevel(config.str("log-level")); log.setDefaultLevel(config.str("log-level"));
async function boot() { async function boot() {
await startRpc();
await loadPlugins(); await loadPlugins();
await startRpc();
await startRelay(); await startRelay();
} }