1
0
forked from x/icebergs
icebergs/core/chat/password.go
2025-01-22 15:32:30 +08:00

12 lines
215 B
Go

package chat
import ice "shylinux.com/x/icebergs"
func init() {
Index.MergeCommands(ice.Commands{
"password": {Name: "password", Hand: func(m *ice.Message, arg ...string) {
m.Echo("hello world")
}},
})
}