muse/src/scripts/start.ts
2022-01-05 14:30:32 -06:00

9 lines
246 B
TypeScript

// This script is mainly used during development.
// Starts Muse without applying database migrations.
import {startBot} from '../index.js';
import logBanner from '../utils/log-banner.js';
(async () => {
logBanner();
await startBot();
})();