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