1
0
mirror of https://shylinux.com/x/ContextOS synced 2025-04-26 01:04:06 +08:00
ContextOS/src/hi/hi.go
2022-01-23 16:53:31 +08:00

18 lines
257 B
Go

package hi
import (
"shylinux.com/x/ice"
)
type hi struct {
ice.Zone
list string `name:"hi 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{}) }