mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-11-03 02:57:13 -05:00
8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
import { db } from "./db";
|
|
import { videos } from "./db/schema/videos";
|
|
import { Video } from "./models/video";
|
|
|
|
const seed = async () =>{
|
|
db.insert(videos).values(Video.examples)
|
|
};
|