mirror of
https://github.com/BluemediaDev/muse.git
synced 2025-06-28 01:32:42 +02:00
9 lines
246 B
TypeScript
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();
|
|
})();
|