name.
package weather Import strings contain the package path and name.
import “my/weather" // $GOPATH/src/my/weather! Qualify with the package name.
weather.Precipitation()! A different name can be chosen.
import rain "my/weather"
rain.Precipitation()