Skip to content

Commit ff41ee2

Browse files
authored
Merge pull request #40 from susnick/apifix
Switch to new api.porkbun.com hostname
2 parents 2eaa286 + d43de5f commit ff41ee2

File tree

1 file changed

+4
-4
lines changed
  • pkg/providers/porkbun/api

1 file changed

+4
-4
lines changed

pkg/providers/porkbun/api/api.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import (
77
)
88

99
const (
10-
PING string = "https://porkbun.com/api/json/v3/ping"
11-
RETRIEVE string = "https://porkbun.com/api/json/v3/dns/retrieve"
12-
CREATE string = "https://porkbun.com/api/json/v3/dns/create"
13-
DELETE string = "https://porkbun.com/api/json/v3/dns/delete"
10+
PING string = "https://api.porkbun.com/api/json/v3/ping"
11+
RETRIEVE string = "https://api.porkbun.com/api/json/v3/dns/retrieve"
12+
CREATE string = "https://api.porkbun.com/api/json/v3/dns/create"
13+
DELETE string = "https://api.porkbun.com/api/json/v3/dns/delete"
1414
)
1515

1616
type Api struct {

0 commit comments

Comments
 (0)