1
0
forked from x/ContextOS
ContextOS/src/hi/hi.go
2022-02-19 19:52:31 +08:00

19 lines
260 B
Go

package hi
import (
"shylinux.com/x/ice"
)
type hi struct {
ice.Zone
list string `name:"list zone id auto insert" help:"hi"`
}
func (h hi) List(m *ice.Message, arg ...string) {
h.Zone.List(m, arg...)
}
func init() { ice.Cmd("web.code.hi.hi", hi{}) }