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(); +}