Lanbot_Music/config.example.js
2022-04-07 22:55:32 +02:00

26 lines
578 B
JavaScript

module.exports = {
app: {
prefix: '$',
token: ''
},
db: {
DATABASE_URI: "",
},
opt: {
DJ: {
enabled: false,
roleName: 'DJ',
commands: ['back', 'clear', 'filter', 'loop', 'pause', 'resume', 'seek', 'shuffle', 'skip', 'stop', 'volume']
},
maxVol: 100,
loopMessage: false,
discordPlayer: {
ytdlOptions: {
quality: 'highestaudio',
highWaterMark: 1 << 25,
type: 'opus',
}
}
}
};