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