mirror of
https://github.com/Jguer/yay.git
synced 2024-11-07 17:47:21 +01:00
10 lines
93 B
Go
10 lines
93 B
Go
package parser
|
|
|
|
type TargetMode int
|
|
|
|
const (
|
|
ModeAny TargetMode = iota
|
|
ModeAUR
|
|
ModeRepo
|
|
)
|