Files
pangolin/server/lib/certificates.ts
2025-12-09 10:56:14 -05: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
}