1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-09-13 08:53:15 +08:00
Files
kubo/commands/argument.go
2014-11-04 02:04:50 -08:00

16 lines
187 B
Go

package commands
type ArgumentType int
const (
ArgString ArgumentType = iota
ArgFile
)
type Argument struct {
Name string
Type ArgumentType
Required bool
Variadic bool
}