mirror of
https://github.com/spf13/cobra
synced 2024-11-16 10:47:09 +00:00
Fix README example to be consistent with others (#585)
Alphabetize and separate builtin imports from external imports to be gofmt-compliant and consistent with other examples in README.
This commit is contained in:
parent
19e54c4a2b
commit
fb02817f3c
1 changed files with 2 additions and 1 deletions
|
@ -286,8 +286,9 @@ populate it with the following:
|
||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/spf13/cobra"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
Loading…
Reference in a new issue