1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-07-02 03:28:25 +08:00

commands: Removed inpout stream from Request

This commit is contained in:
Matt Bell
2014-11-02 16:59:52 -08:00
committed by Juan Batiz-Benet
parent 26c2164c35
commit 6bab1f47fb

View File

@ -124,7 +124,7 @@ func main() {
}
func getOptions(req cmds.Request, root *cmds.Command) (cmds.Request, error) {
tempReq := cmds.NewRequest(req.Path(), req.Options(), nil, nil, nil)
tempReq := cmds.NewRequest(req.Path(), req.Options(), nil, nil)
options, err := root.GetOptions(tempReq.Path())
if err != nil {