import { GetYoutubeInput, GetYoutubeOutput } from "../types/api.ts"; import { searchYTVideo } from "../youtube-api.ts"; export async function getVids( params: GetYoutubeInput, ): Promise { const videoId = await searchYTVideo(params); return { videoId }; }