1
0
forked from x/icebergs
icebergs/core/code/portal.go
2023-06-28 21:55:01 +08:00

13 lines
235 B
Go

package code
import ice "shylinux.com/x/icebergs"
const PORTAL = "portal"
func init() {
Index.MergeCommands(ice.Commands{
PORTAL: {Name: "portal path auto", Help: "门户", Hand: func(m *ice.Message, arg ...string) {
}},
})
}