mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2026-01-07 00:34:46 +08:00
12 lines
237 B
Go
12 lines
237 B
Go
package providers
|
|
|
|
//go:generate stringer -type SupportLevel -trimprefix SupportLevel
|
|
|
|
type SupportLevel int
|
|
|
|
const (
|
|
SupportLevelDeprecated SupportLevel = iota
|
|
SupportLevelNeedsVolunteer
|
|
SupportLevelCommunity
|
|
SupportLevelOfficial
|
|
)
|