`goimports` does not seem to work with `encoding/base64`. Here is the sample I tested `goimports` with: ``` go package main import ( "fmt" ) func main() { data := []byte("hello world") str := base64.RawURLEncoding.EncodeToString(data) fmt.Println(str) } ``` I am using go version 1.5 darwin/amd64.