package
Version:
v0.0.0-...-b665e70
Opens a new window with list of versions in this module.
Published: May 21, 2024
License: MIT
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Actor struct {
ID int `json:"id"`
NewActor
MovieIDs []int32 `json:"movie_ids"`
}
Movie represents a movie record
type NewActor struct {
Name string `json:"name"`
Sex string `json:"sex"`
BirthDate time.Time `json:"birthdate"`
}
type NewMovie struct {
Title string `json:"title"`
Description string `json:"description,omitempty"`
ReleaseDate time.Time `json:"release_date"`
Rating int `json:"rating"`
ActorIDs []int32 `json:"actor_ids"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.