* minor package update and env * added docker scripts * added working docker compose * fixed docker container bridge
17 lines
569 B
TypeScript
17 lines
569 B
TypeScript
import { event, Events, registerCommands } from '../utils/index.js'
|
|
import { ActivityType } from 'discord.js'
|
|
import commands from '../commands/index.js'
|
|
|
|
// Log when the bot successfully logs in and export it
|
|
export default event(Events.ClientReady, ({ log }, client) => {
|
|
// Register the commands associated with the bot upon loggin in
|
|
registerCommands(client, commands)
|
|
|
|
// set status of the bot
|
|
client.user.setActivity({
|
|
name: 'Powered by Ollama',
|
|
type: ActivityType.Custom
|
|
})
|
|
|
|
log(`Logged in as ${client.user.username}.`)
|
|
}) |