dnscontrol/build/generate/generate.go
Tom Limoncelli ccb582b278
CHORE: Linting (#1704)
* Remove deprecated io/ioutil
* fixup!
* staticcheck and linting
* revert models/provider.go
* Fix imports to new style
* linting
2022-08-14 20:46:56 -04:00

9 lines
113 B
Go

package main
import "log"
func main() {
if err := generateFeatureMatrix(); err != nil {
log.Fatal(err)
}
}