import { type Video, type InsertVideo, type UpdateVideo } from "@shared/schema"; import { randomUUID } from "crypto"; import { BunnyService } from "./bunny"; export interface IStorage { getVideos(limit?: number, offset?: number, search?: string): Promise; getVideo(id: string): Promise