1
0
forked from x/ContextOS
ContextOS/src/h2/h2.go
2023-01-20 14:51:33 +08:00

18 lines
263 B
Go

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