9 lines
198 B
TypeScript
9 lines
198 B
TypeScript
import { sql } from "@cvsa/core";
|
|
|
|
export async function aidExists(aid: number) {
|
|
const res = await sql`
|
|
SELECT 1 FROM bilibili_metadata WHERE aid = ${aid}
|
|
`;
|
|
return res.length > 0;
|
|
}
|