1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-26 09:34:05 +08:00
icebergs/misc/node/vue.go
2023-06-03 17:07:19 +08:00

18 lines
269 B
Go

package node
import (
"shylinux.com/x/ice"
"shylinux.com/x/icebergs/base/nfs"
)
type vue struct {
ice.Code
list string `name:"list path auto" help:"框架"`
}
func (s vue) List(m *ice.Message) {
m.Cmdy(nfs.DIR, nfs.USR)
}
func init() { ice.CodeCtxCmd(vue{}) }