Used goimports to fix import order

Keeps the list sorted and prevents future merge conflicts.
This commit is contained in:
Christian Muehlhaeuser 2019-07-19 06:07:33 +02:00
parent 2d7544ebde
commit 609f2c8632
No known key found for this signature in database
GPG key ID: 3CF9FA45CA1EBB7E
2 changed files with 5 additions and 3 deletions

View file

@ -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 (

View file

@ -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.