mirror of
https://github.com/Buriburizaem0n/nezha_domains.git
synced 2026-02-04 04:30:05 +00:00
16 lines
248 B
Go
16 lines
248 B
Go
package dummy
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/libdns/libdns"
|
|
)
|
|
|
|
// Internal use
|
|
type Provider struct{}
|
|
|
|
func (provider *Provider) SetRecords(ctx context.Context, zone string,
|
|
recs []libdns.Record) ([]libdns.Record, error) {
|
|
return recs, nil
|
|
}
|