diff --git a/go.mod b/go.mod index 813a141..5cc0759 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,8 @@ -module 2024-contexts.shylinux.com/x/enterprise +module shylinux.com/x/enterprise go 1.13 -require shylinux.com/x/ice v1.5.40 // indirect +require ( + shylinux.com/x/ice v1.5.40 + shylinux.com/x/icebergs v1.9.38 +) diff --git a/src/hi/hi.go b/src/hi/hi.go deleted file mode 100644 index 984efba..0000000 --- a/src/hi/hi.go +++ /dev/null @@ -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{}) } \ No newline at end of file diff --git a/src/main.go b/src/main.go index f757c0d..c8bce12 100644 --- a/src/main.go +++ b/src/main.go @@ -1,10 +1,7 @@ package main -import ( - _ "2024-contexts.shylinux.com/x/enterprise/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 = "Enterprise" }