10 lines
169 B
Go
10 lines
169 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"github.com/withfig/autocomplete-tools/integrations/cobra"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
RootCmd.AddCommand(cobracompletefig.CreateCompletionSpecCommand())
|
||
|
}
|