porkbun-ddns: update APIBASE

Sometime recently Porkbun changed their basename.

> Please note that porkbun.com is no longer supported as the hostname
for our API. Please use api.porkbun.com as the correct hostname moving
forward.
This commit is contained in:
xeals 2025-02-22 15:20:48 +11:00
parent a984858a7f
commit 2940e7c5fb
Signed by: xeals
SSH Key Fingerprint: SHA256:53xHRPqZPQewIgPNiVQ96gm8O4xBVzaxNj1LCSJpTf4

View File

@ -9,7 +9,7 @@ from dataclasses import dataclass, fields as datafields
from enum import Enum, unique
from typing import List, Optional
APIBASE = "https://porkbun.com/api/json/v3/dns"
APIBASE = "https://api.porkbun.com/api/json/v3/dns"
def dataclass_from_dict(klass: object, d: dict):