fix(core): update

This commit is contained in:
2022-01-06 01:23:17 +01:00
parent f13c90513e
commit c240062397

View File

@@ -16,7 +16,9 @@ export const defaultPublicServer = new UiPublicServer({
}); });
export const runCli = async () => { export const runCli = async () => {
await defaultPublicServer.startServer();
} }
export const stop = async () => {} export const stop = async () => {
await defaultPublicServer.stopServer();
}