feat(api-server): add absolute seek endpoint (#2748)

Co-authored-by: JellyBrick <shlee1503@naver.com>
This commit is contained in:
Franz DC
2024-12-25 07:46:51 +08:00
committed by GitHub
parent 65f4339fd1
commit 237dde9765
4 changed files with 42 additions and 20 deletions

View File

@ -0,0 +1,5 @@
import { z } from '@hono/zod-openapi';
export const SeekSchema = z.object({
seconds: z.number(),
});