- need TMDB_API_KEY as environment variable - mount /cache for data persistence Signed-off-by: Peter Siegmund <developer@mars3142.org>
17 lines
152 B
Dart
17 lines
152 B
Dart
enum PosterOrientation {
|
|
horizontal,
|
|
vertical,
|
|
}
|
|
|
|
enum PosterFormat {
|
|
png,
|
|
jpeg,
|
|
bmp,
|
|
}
|
|
|
|
enum PosterOutput {
|
|
image,
|
|
lvgl,
|
|
lvglBinary,
|
|
}
|