2025-02-23

2025-02-24
This commit is contained in:
gcch 2025-02-23 16:09:48 +01:00
commit 0f52ff0cef
40 changed files with 846 additions and 75 deletions

View file

@ -0,0 +1,8 @@
import { MEDIA_TYPES } from "@/db/schemas/constants";
import { Schema } from "effect";
export class SearchPageQueryParams extends Schema.Class<SearchPageQueryParams>("SearchPageQueryParams")({
query: Schema.NonEmptyString,
type: Schema.Enums(MEDIA_TYPES),
year: Schema.String,
}) {}