Consider the Go code below..
package main
import "go/token"
import "python/token"
func main() {
x := token.INDENT
}
What is the best way to solve the ambiguity of token in the above code? Is there something similar to the python expression of import python.token as pytoken?
For example,
Import declarations