mirror of
https://github.com/docker/cli.git
synced 2026-01-06 05:41:44 +03:00
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"
|
|
)
|