1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-20 10:42:11 +08:00

commands: Changed Request arguments to a []interface{}

This commit is contained in:
Matt Bell
2014-11-02 16:55:13 -08:00
committed by Juan Batiz-Benet
parent 30e968754e
commit 827f1dd0b0
6 changed files with 36 additions and 20 deletions

View File

@ -24,6 +24,7 @@ type Formatter func(Response) (string, error)
type Command struct {
Help string
Options []Option
Arguments []Argument
Run Function
Format Formatter
Type interface{}