mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
* MAINT: Switch from esc to embed * Simplify * Update minimum go version in docs and pipelines * go generate
12 lines
118 B
Go
12 lines
118 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
)
|
|
|
|
func main() {
|
|
if err := generateFeatureMatrix(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|