mirror of
https://github.com/kevinthedang/discord-ollama.git
synced 2025-12-12 19:56:06 -05:00
* added message style command * docker setup scripts * reformat messageStyle.ts * fix: register unregister on deploy * add: messageStream preference * add: json config handler * update: messageCreate gets config * update: shifted chat to config callback * fix: naming conventions based on discord * update: setup in docs now * add: static docker ips * version increment * add: bot message for no config * fix: no config case * add: clarification for subnetting * update: version increment in lock file --------- Co-authored-by: JT2M0L3Y <jtsmoley@icloud.com>
10 lines
292 B
TypeScript
10 lines
292 B
TypeScript
import { SlashCommand } from '../utils/commands.js'
|
|
import { ThreadCreate } from './threadCreate.js'
|
|
import { MessageStyle } from './messageStyle.js'
|
|
import { MessageStream } from './messageStream.js'
|
|
|
|
export default [
|
|
ThreadCreate,
|
|
MessageStyle,
|
|
MessageStream
|
|
] as SlashCommand[] |