1
0
forked from x/ContextOS
This commit is contained in:
harveyshao 2023-01-10 21:43:16 +08:00
parent cfb3446c1b
commit 6156a52c13
3 changed files with 4 additions and 6 deletions

View File

@ -22,7 +22,7 @@ ish_miss_prepare_operate
# ish_miss_prepare webview # ish_miss_prepare webview
# ish_miss_prepare echarts # ish_miss_prepare echarts
# ish_miss_prepare icons # ish_miss_prepare icons
# ish_miss_prepare gogit ish_miss_prepare gogit
# ish_miss_prepare wubi-dict # ish_miss_prepare wubi-dict
# ish_miss_prepare word-dict # ish_miss_prepare word-dict

View File

@ -1,4 +1,4 @@
vimer "http://localhost:9020/chat/cmd/web.code.vimer?topic=black&debug=true" vimer "http://localhost:9020/chat/cmd/web.code.vimer?topic=dark"
# goods "http://localhost:9020/chat/cmd/web.mall.goods" # goods "http://localhost:9020/chat/cmd/web.mall.goods"
# plan "http://localhost:9020/chat/cmd/web.team.plan" # plan "http://localhost:9020/chat/cmd/web.team.plan"
# localhost http://localhost:9020 # localhost http://localhost:9020

View File

@ -2,6 +2,7 @@ package hi
import ( import (
"shylinux.com/x/ice" "shylinux.com/x/ice"
"shylinux.com/x/icebergs/base/ctx"
) )
type hi struct { type hi struct {
@ -17,10 +18,7 @@ func (s hi) Show(m *ice.Message, arg ...string) {
func (s hi) List(m *ice.Message, arg ...string) { func (s hi) List(m *ice.Message, arg ...string) {
s.Zone.ListPage(m, arg...) s.Zone.ListPage(m, arg...)
m.Echo("hello world") ctx.Display
m.Echo("hello world")
m.Echo("hello world")
m.Echo("hello world")
} }
func init() { ice.Cmd("web.code.hi.hi", hi{}) } func init() { ice.Cmd("web.code.hi.hi", hi{}) }