gouick/models/dependency_name_enum.go
Matthieu 'JP' DERASSE b7f0d796e4
All checks were successful
continuous-integration/drone/push Build is passing
feat(go-swagger): Small refacto on launcher
2022-09-21 21:19:42 +00:00

12 lines
347 B
Go

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"
)