Files
pangolin/server/lib/certificates.ts
2025-12-10 03:19:14 +01:00

16 lines
351 B
TypeScript

export async function getValidCertificatesForDomains(
domains: Set<string>
): Promise<
Array<{
id: number;
domain: string;
wildcard: boolean | null;
certFile: string | null;
keyFile: string | null;
expiresAt: number | null;
updatedAt?: number | null;
}>
> {
return []; // stub
}