Skip to content

Commit

Permalink
Merge pull request #40 from susnick/apifix
Browse files Browse the repository at this point in the history
Switch to new api.porkbun.com hostname
  • Loading branch information
jungaretti authored Oct 15, 2024
2 parents 2eaa286 + d43de5f commit ff41ee2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/providers/porkbun/api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
)

const (
PING string = "https://porkbun.com/api/json/v3/ping"
RETRIEVE string = "https://porkbun.com/api/json/v3/dns/retrieve"
CREATE string = "https://porkbun.com/api/json/v3/dns/create"
DELETE string = "https://porkbun.com/api/json/v3/dns/delete"
PING string = "https://api.porkbun.com/api/json/v3/ping"
RETRIEVE string = "https://api.porkbun.com/api/json/v3/dns/retrieve"
CREATE string = "https://api.porkbun.com/api/json/v3/dns/create"
DELETE string = "https://api.porkbun.com/api/json/v3/dns/delete"
)

type Api struct {
Expand Down

0 comments on commit ff41ee2

Please # to comment.