Add GET /studios/:id/shows

This commit is contained in:
Zoe Roux
2025-03-02 23:40:59 +01:00
parent 2301e48321
commit adaa892a26
7 changed files with 122 additions and 18 deletions
+6
View File
@@ -0,0 +1,6 @@
import { t } from "elysia";
import { Collection } from "./collections";
import { Movie } from "./movie";
import { Serie } from "./serie";
export const Show = t.Union([Movie, Serie, Collection]);