Files
nezha_domains/pkg/ddns/dummy/dummy.go
UUBulb 4871211f93 chore: cleanup some code (#1069)
* chore

* modernize loop

* ddns: simpify Provider struct
2025-04-26 18:28:21 +08:00

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
}