11 lines
169 B
Go
11 lines
169 B
Go
//go:build tools
|
|
|
|
package main
|
|
|
|
import (
|
|
_ "github.com/cpuguy83/go-md2man/v2"
|
|
_ "github.com/spf13/cobra"
|
|
_ "github.com/spf13/cobra/doc"
|
|
_ "github.com/spf13/pflag"
|
|
)
|