1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-26 09:34:05 +08:00
icebergs/base/nfs/nfs.go
2023-03-22 17:31:16 +08:00

16 lines
341 B
Go

package nfs
import (
ice "shylinux.com/x/icebergs"
kit "shylinux.com/x/toolkits"
)
const NFS = "nfs"
var Index = &ice.Context{Name: NFS, Help: "存储模块"}
func init() {
ice.Index.Register(Index, nil, TAR, CAT, DIR, PACK, DEFS, SAVE, PUSH, COPY, LINK, GREP, TRASH)
}
func Prefix(arg ...string) string { return kit.Keys(NFS, arg) }