Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Film ¶
type Film struct { Id string `json:"id"` Title string `json:"title"` Description string `json:"description"` Director string `json:"director"` Producer string `json:"producer"` ReleaseDate string `json:"release_date"` RottenTomatoScore string `json:"rt_score"` }
Film - all of the Studio Ghibli films.
type FilmStorage ¶
type Location ¶
type Location struct { Id string `json:"id"` Name string `json:"name"` Climate string `json:"climate"` Terrain string `json:"terrain"` SurfaceWater string `json:"surface_water"` Residents []string `json:"residents"` Films []string `json:"films"` Url []string `json:"url"` }
Location includes lands, countries, and places.
type LocationStorage ¶
type Person ¶
type Person struct { Id string `json:"id"` Name string `json:"name"` Gender string `json:"gender"` Age string `json:"age"` EyeColor string `json:"eye_color"` HairColor string `json:"hair_color"` Films []string `json:"films"` Species string `json:"species"` Url string `json:"url"` }
Person includes all Ghibli characters, human and non-.
type PersonStorage ¶
type Species ¶
type Species struct { Id string `json:"id"` Name string `json:"name"` Classification string `json:"classification"` EyeColors string `json:"eye_colors"` HairColors string `json:"hair_colors"` Url string `json:"url"` People []string `json:"people"` Films []string `json:"films"` }
Species includes humans, animals, and spirits et al.
type SpeciesStorage ¶
type Vehicle ¶
type Vehicle struct { Id string `json:"id"` Name string `json:"name"` Description string `json:"description"` VehicleClass string `json:"vehicle_class"` Length string `json:"length"` Pilot string `json:"pilot"` Films string `json:"films"` Url string `json:"url"` }
Vehicle includes cars, ships, and planes.
Click to show internal directories.
Click to hide internal directories.