1
0
forked from x/icebergs
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{}) }