Standardize import statements

This commit is contained in:
Katrina Owen 2013-12-07 07:10:04 -08:00
parent 5e1854f702
commit dde48a57c9

10
flag.go
View File

@ -1,9 +1,11 @@
package cli package cli
import "fmt" import (
import "flag" "flag"
import "strconv" "fmt"
import "strings" "strconv"
"strings"
)
// Flag is a common interface related to parsing flags in cli. // Flag is a common interface related to parsing flags in cli.
// For more advanced flag parsing techniques, it is recomended that // For more advanced flag parsing techniques, it is recomended that