mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-11 01:47:53 +08:00
ccb582b278
* Remove deprecated io/ioutil * fixup! * staticcheck and linting * revert models/provider.go * Fix imports to new style * linting
9 lines
113 B
Go
9 lines
113 B
Go
package main
|
|
|
|
import "log"
|
|
|
|
func main() {
|
|
if err := generateFeatureMatrix(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|