1
0
mirror of https://github.com/IceWhaleTech/CasaOS.git synced 2025-07-06 23:37:26 +02:00
Files
CasaOS/service/ddns/goddy_test.go
2021-09-26 10:35:02 +08:00

16 lines
250 B
Go

package ddns
import (
"testing"
)
func TestSetConfig(t *testing.T) {
var model GoDaddy
model.IPV4 = "180.164.179.198"
model.Domain = "link-liang.xyz"
model.Secret = "secret"
model.Key = "key"
//model.Type=ddns.GOGADDY
//model.SetConfig()
}