1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-26 09:34:05 +08:00
icebergs/misc/node/npm.go
2022-06-04 10:45:18 +08:00

15 lines
204 B
Go

package node
import "shylinux.com/x/ice"
type npm struct {
ice.Code
list string `name:"list auto" help:"打包构建"`
}
func (s npm) List(m *ice.Message) {
}
func init() { ice.CodeCtxCmd(npm{}) }