mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-11 03:09:41 +08:00
15 lines
202 B
Go
15 lines
202 B
Go
package commands
|
|
|
|
type ArgumentType int
|
|
|
|
const (
|
|
ArgString ArgumentType = iota
|
|
ArgFile
|
|
)
|
|
|
|
type Argument struct {
|
|
Name string
|
|
Type ArgumentType
|
|
Required, Variadic bool
|
|
}
|