package unixfs import ( cmds "gitlab.dms3.io/dms3/go-dms3-cmds" ) var UnixFSCmd = &cmds.Command{ Helptext: cmds.HelpText{ Tagline: "Interact with DMS3 objects representing Unix filesystems.", ShortDescription: ` 'dms3 file' provides a familiar interface to file systems represented by DMS3 objects, which hides dms3 implementation details like layout objects (e.g. fanout and chunking). `, LongDescription: ` 'dms3 file' provides a familiar interface to file systems represented by DMS3 objects, which hides dms3 implementation details like layout objects (e.g. fanout and chunking). `, }, Subcommands: map[string]*cmds.Command{ "ls": LsCmd, }, }