void/utils/shared/lanyard.ts
2022-07-30 23:59:56 +02:00

7 lines
197 B
TypeScript

const id = process.env.NEXT_DISCORD_ID || "318044130796109825"
export async function jsonyard() {
return await fetch(
`https://api.lanyard.rest/v1/users/${id}`,
).then((r) => r.json());
}