goMuffin/chatbot/enum.go
2025-05-26 22:46:37 +09:00

8 lines
95 B
Go

package chatbot
type ChatbotMode int
const (
ChatbotAI ChatbotMode = iota
ChatbotDefault
)