mirror of
https://github.com/qdm12/ddns-updater.git
synced 2026-07-29 00:52:37 -04:00
12 lines
173 B
Go
12 lines
173 B
Go
package data
|
|
|
|
import (
|
|
"net/netip"
|
|
"time"
|
|
)
|
|
|
|
type PersistentDatabase interface {
|
|
Close() error
|
|
StoreNewIP(domain, host string, ip netip.Addr, t time.Time) (err error)
|
|
}
|