You've already forked CasaOS
mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-07-06 23:37:26 +02:00
16 lines
250 B
Go
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()
|
||
|
}
|