1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-26 09:34:05 +08:00
icebergs/base/cli/cli.go
2021-12-30 17:37:18 +08:00

12 lines
214 B
Go

package cli
import (
ice "shylinux.com/x/icebergs"
)
const CLI = "cli"
var Index = &ice.Context{Name: CLI, Help: "命令模块"}
func init() { ice.Index.Register(Index, nil, RUNTIME, SYSTEM, DAEMON, QRCODE) }