server/laf-cloud/functions/CDNKey.ts
2026-09-01 16:04:15 +08:00

10 lines
243 B
TypeScript

import cloud from '@lafjs/cloud'
const key: string = "1.0.0";
const testkey: string = "1.0.0";
export default async function (ctx: FunctionContext) {
const uid = ctx.body.uid;
if ([].includes(uid)) {
return testkey;
}
return key;
}