Files
pangolin/server/lib/dns/generateDomains.ts
T
2026-09-14 18:05:30 -04:00

11 lines
316 B
TypeScript

export function createCname(
domainId: string,
baseDomain: string
): { baseDomain: string; value: string }[] {
throw new Error("Creating CNAME records is not supported in this build");
}
export function createNs(): string[] {
throw new Error("Creating NS records is not supported in this build");
}