mirror of
https://github.com/fosrl/pangolin.git
synced 2026-09-15 15:19:51 +02:00
11 lines
316 B
TypeScript
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");
|
|
}
|