以下の struct を Datastore に put しようとしたら・・・
type User struct { _kind string `goon:"kind,User"` ID string Tasks []*Tasks } type Task struct { Title string }
以下のエラーが発生した。
datastore: unsupported struct field type: *Task
原因は []*Tasks のようにポインタを指定しているから、
まあ、Datastore に保存するので値を渡さないとね・・・。