package models // DependencyName is a type used as an enum for possible Dependency Name. type DependencyName string //nolint:exported // keeping the enum simple and readable. const ( DependencyName_GIT DependencyName = "Git" DependencyName_GOLANG DependencyName = "Golang" DependencyName_GO_SWAGGER DependencyName = "Go Swagger" )