This repository has been archived on 2026-09-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2024-07-12 12:11:18 +01:00
|
|
|
package version
|
|
|
|
|
|
|
|
|
|
// Constraint enables matching a version based on lower and upper bounds.
|
|
|
|
|
type Constraint struct {
|
|
|
|
|
Gt *Version // Greater than...
|
|
|
|
|
Gte *Version // Greater than or equal to...
|
|
|
|
|
Lt *Version // Less than...
|
|
|
|
|
Lte *Version // Less than or equal to...
|
|
|
|
|
}
|