Skip to content

Commit

Permalink
Add new ecosystems, and a slice containing all of them.
Browse files Browse the repository at this point in the history
Signed-off-by: Caleb Brown <[email protected]>
  • Loading branch information
calebbrown committed Sep 27, 2023
1 parent 5862bfd commit 46161f7
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pkg/models/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,39 @@ const (
EcosystemRockyLinux Ecosystem = "Rocky Linux"
EcosystemAlmaLinux Ecosystem = "AlmaLinux"
EcosystemBitnami Ecosystem = "Bitnami"
EcosystemPhotonOS Ecosystem = "Photon OS"
EcosystemCRAN Ecosystem = "CRAN"
EcosystemBioconductor Ecosystem = "Bioconductor"
EcosystemSwiftURL Ecosystem = "SwiftURL"
)

var Ecosystems = []Ecosystem{
EcosystemGo,
EcosystemNPM,
EcosystemOSSFuzz,
EcosystemPyPI,
EcosystemRubyGems,
EcosystemCratesIO,
EcosystemPackagist,
EcosystemMaven,
EcosystemNuGet,
EcosystemLinux,
EcosystemDebian,
EcosystemAlpine,
EcosystemHex,
EcosystemAndroid,
EcosystemGitHubActions,
EcosystemPub,
EcosystemConanCenter,
EcosystemRockyLinux,
EcosystemAlmaLinux,
EcosystemBitnami,
EcosystemPhotonOS,
EcosystemCRAN,
EcosystemBioconductor,
EcosystemSwiftURL,
}

type SeverityType string

const (
Expand Down

0 comments on commit 46161f7

Please sign in to comment.