mirror of
https://github.com/qdm12/ddns-updater.git
synced 2026-08-03 19:09:43 -04:00
- Retro-compatible change, `host` field still works - Documentation updated to use `owner` field - Code updated to use owner variable name
12 lines
174 B
Go
12 lines
174 B
Go
package data
|
|
|
|
import (
|
|
"net/netip"
|
|
"time"
|
|
)
|
|
|
|
type PersistentDatabase interface {
|
|
Close() error
|
|
StoreNewIP(domain, owner string, ip netip.Addr, t time.Time) (err error)
|
|
}
|