mirror of
https://shylinux.com/x/icebergs
synced 2025-04-27 01:48:27 +08:00
17 lines
269 B
Go
17 lines
269 B
Go
package cli
|
|
|
|
import (
|
|
ice "shylinux.com/x/icebergs"
|
|
)
|
|
|
|
const (
|
|
USER = "USER"
|
|
HOME = "HOME"
|
|
PATH = "PATH"
|
|
)
|
|
const CLI = "cli"
|
|
|
|
var Index = &ice.Context{Name: CLI, Help: "命令模块"}
|
|
|
|
func init() { ice.Index.Register(Index, nil, RUNTIME, SYSTEM, DAEMON, QRCODE) }
|