From c2400623973c97f9392e83cf74842763e19cadb3 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Thu, 6 Jan 2022 01:23:17 +0100 Subject: [PATCH] fix(core): update --- ts/index.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ts/index.ts b/ts/index.ts index 840f518..2170a96 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -16,7 +16,9 @@ export const defaultPublicServer = new UiPublicServer({ }); export const runCli = async () => { - + await defaultPublicServer.startServer(); } -export const stop = async () => {} +export const stop = async () => { + await defaultPublicServer.stopServer(); +}