1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-29 09:34:03 +08:00

Merge pull request #2065 from ipfs/feat/gateway-get

add 'get' to the allowed gateway commands
This commit is contained in:
Juan Benet
2015-12-14 02:45:07 -05:00

View File

@ -137,6 +137,7 @@ var rootROSubcommands = map[string]*cmds.Command{
},
"cat": CatCmd,
"commands": CommandsDaemonROCmd,
"get": GetCmd,
"ls": LsCmd,
"name": &cmds.Command{
Subcommands: map[string]*cmds.Command{
@ -149,6 +150,7 @@ var rootROSubcommands = map[string]*cmds.Command{
"links": objectLinksCmd,
"get": objectGetCmd,
"stat": objectStatCmd,
"patch": objectPatchCmd,
},
},
"refs": RefsROCmd,