time isn’t a type. time.Time is. See the package docs for the types: http://golang.org/pkg/time/
import time
type Person struct {
Name string
DateJoined time.Time
}
time isn’t a type. time.Time is. See the package docs for the types: http://golang.org/pkg/time/
import time
type Person struct {
Name string
DateJoined time.Time
}