mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-13 08:53:15 +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
|
|
}
|