diff --git a/go.mod b/go.mod index 827069a..ec57227 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module 2024-contexts.shylinux.com/x/community +module shylinux.com/x/community go 1.13 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 1fe58f2..302822d 100644 --- a/src/main.go +++ b/src/main.go @@ -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" }