mirror of
https://shylinux.com/x/icebergs
synced 2025-04-27 09:48:28 +08:00
13 lines
251 B
Go
13 lines
251 B
Go
package team
|
|
|
|
const MISS = "miss"
|
|
|
|
func init() {
|
|
Index.Merge(&ice.Context{
|
|
Configs: map[string]*ice.Config{
|
|
MISS: {Name: "miss", Help: "miss", Value: kit.Data(kit.MDB_SHORT, kit.MDB_ZONE)},
|
|
},
|
|
Commands: map[string]*ice.Command{},
|
|
}, nil)
|
|
}
|