mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-04 15:58:13 +08:00
16 lines
187 B
Go
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
|
|
}
|