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