This commit is contained in:
IT 老营长 @云轩领航-创始人 2024-07-24 17:48:08 +08:00
parent 9d7fb0c2eb
commit b67174b201
3 changed files with 3 additions and 21 deletions

2
go.mod
View File

@ -1,4 +1,4 @@
module 2024-contexts.shylinux.com/x/community
module shylinux.com/x/community
go 1.13

View File

@ -1,15 +0,0 @@
package hi
import "shylinux.com/x/ice"
type hi struct {
ice.Hash
list string `name:"list hash auto" help:"hi"`
}
func (s hi) List(m *ice.Message, arg ...string) {
s.Hash.List(m, arg...)
}
func init() { ice.Cmd("web.chat.hi.hi", hi{}) }

View File

@ -1,10 +1,7 @@
package main
import (
_ "2024-contexts.shylinux.com/x/community/src/hi"
"shylinux.com/x/ice"
)
import "shylinux.com/x/ice"
func main() { print(ice.Run()) }
func init() { ice.Info.Titles = "ContextOS" }
func init() { ice.Info.Titles = "Community" }