This commit is contained in:
cdle
2021-10-22 10:42:19 +08:00
parent b5d4673919
commit 5641d9e799
+13
View File
@@ -0,0 +1,13 @@
package core
func init() {
AddCommand("", []Function{
{
Admin: true,
Rules: []string{"raw (吃早点)", "raw (午饭)", "raw (饿了么)", "raw (饿了)", "raw (外卖)", "raw (美团)"},
Handle: func(s Sender) interface{} {
return nil
},
},
})
}