mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-12 18:37:54 +08:00
CORE: Fix matrix generator (#1958)
This commit is contained in:
parent
03d782dcbc
commit
c1532d90a0
1 changed files with 3 additions and 3 deletions
|
@ -1,11 +1,11 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"sort"
|
||||
|
||||
"github.com/StackExchange/dnscontrol/v3/providers"
|
||||
_ "github.com/StackExchange/dnscontrol/v3/providers/_all"
|
||||
"github.com/fbiville/markdown-table-formatter/pkg/markdown"
|
||||
"sort"
|
||||
)
|
||||
|
||||
func generateFeatureMatrix() error {
|
||||
|
@ -16,7 +16,7 @@ func generateFeatureMatrix() error {
|
|||
return err
|
||||
}
|
||||
|
||||
fmt.Print(markdownTable)
|
||||
_ = markdownTable
|
||||
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue