mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
891ba277b1
Initial modification to support mobile client Export necessary interfaces for Android framework
11 lines
200 B
Go
11 lines
200 B
Go
package dns
|
|
|
|
import nbdns "github.com/netbirdio/netbird/dns"
|
|
|
|
// Server is a dns server interface
|
|
type Server interface {
|
|
Start()
|
|
Stop()
|
|
UpdateDNSServer(serial uint64, update nbdns.Config) error
|
|
}
|