mirror of
https://shylinux.com/x/icebergs
synced 2025-04-26 09:34:05 +08:00
18 lines
266 B
Go
18 lines
266 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:"vue"`
|
|
}
|
|
|
|
func (s vue) List(m *ice.Message) {
|
|
m.Cmdy(nfs.DIR, nfs.USR)
|
|
}
|
|
|
|
func init() { ice.CodeCtxCmd(vue{}) }
|