mirror of
https://github.com/sern-handler/create-bot
synced 2026-06-06 01:16:53 +00:00
14 lines
441 B
JavaScript
14 lines
441 B
JavaScript
//CONFIG FILE: export only data here and do not cause side effects. Feel free to add your own configuration to this file.
|
|
|
|
//commands directory. REQUIRED
|
|
export const commands = './dist/commands'
|
|
// events directory.
|
|
export const events = './dist/events'
|
|
|
|
// schedule tasks and declare them here
|
|
export const tasks = './dist/tasks'
|
|
|
|
// defaultPrefix: if omitted, sern will disable all text/prefix commands
|
|
export const defaultPrefix = '?'
|
|
|