mirror of
https://github.com/ipfs/kubo.git
synced 2025-05-23 18:08:12 +08:00

Tried to check all instances of IPFS and make sure they werent referring to the CLI tool. See #2910. License: MIT Signed-off-by: Richard Littauer <richard.littauer@gmail.com>
24 lines
658 B
Go
24 lines
658 B
Go
package unixfs
|
|
|
|
import cmds "github.com/ipfs/go-ipfs/commands"
|
|
|
|
var UnixFSCmd = &cmds.Command{
|
|
Helptext: cmds.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,
|
|
},
|
|
}
|