mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-07 09:17:49 +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
|
|
}
|