mirror of
https://github.com/spf13/cobra
synced 2025-05-07 05:47:26 +00:00
Used goimports to fix import order
Keeps the list sorted and prevents future merge conflicts.
This commit is contained in:
parent
2d7544ebde
commit
609f2c8632
2 changed files with 5 additions and 3 deletions
|
@ -15,10 +15,11 @@ package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/spf13/cobra"
|
|
||||||
"github.com/spf13/viper"
|
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
|
|
||||||
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/spf13/viper"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
|
@ -2,9 +2,10 @@ package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/spf13/cobra/cobra/tpl"
|
|
||||||
"os"
|
"os"
|
||||||
"text/template"
|
"text/template"
|
||||||
|
|
||||||
|
"github.com/spf13/cobra/cobra/tpl"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Project contains name, license and paths to projects.
|
// Project contains name, license and paths to projects.
|
||||||
|
|
Loading…
Add table
Reference in a new issue