diff --git a/src/hi/hi.go b/src/hi/hi.go new file mode 100644 index 00000000..6652dbd9 --- /dev/null +++ b/src/hi/hi.go @@ -0,0 +1,17 @@ +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{}) } diff --git a/src/hi/hi.shy b/src/hi/hi.shy new file mode 100644 index 00000000..f320a71c --- /dev/null +++ b/src/hi/hi.shy @@ -0,0 +1,3 @@ +chapter "hi" + +field "hi" web.code.hi.hi