1
0
forked from x/ContextOS
This commit is contained in:
IT 老营长 @云轩领航-创始人 2023-03-07 03:44:57 +08:00
parent fa5065b0f3
commit 439bd78535
2 changed files with 21 additions and 0 deletions

17
src/h3/h3.go Normal file
View File

@ -0,0 +1,17 @@
package h3
import (
"shylinux.com/x/ice"
)
type h3 struct {
ice.Zone
list string `name:"list zone id auto insert" help:"h3"`
}
func (s h3) List(m *ice.Message, arg ...string) {
s.Zone.List(m, arg...)
}
func init() { ice.Cmd("web.code.h3.h3", h3{}) }

4
src/h3/h3.shy Normal file
View File

@ -0,0 +1,4 @@
chapter "h3"
field web.code.h3.h3