mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-04-03 04:45:40 +00:00
11 lines
286 B
TypeScript
11 lines
286 B
TypeScript
/**
|
|
* This file is used to launch mjolnir for manual testing, creating a user and management room automatically if it doesn't already exist.
|
|
*/
|
|
|
|
import { makeMjolnir } from "./mjolnirSetupUtils";
|
|
|
|
(async () => {
|
|
let mjolnir = await makeMjolnir();
|
|
await mjolnir.start();
|
|
})();
|