forked from x/icebergs
12 lines
215 B
Go
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")
|
|
}},
|
|
})
|
|
}
|