mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-03 05:24:56 +01:00
15 lines
190 B
Go
15 lines
190 B
Go
//go:build ios || android
|
|
|
|
package dns
|
|
|
|
type ShutdownState struct {
|
|
}
|
|
|
|
func (s *ShutdownState) Name() string {
|
|
return "dns_state"
|
|
}
|
|
|
|
func (s *ShutdownState) Cleanup() error {
|
|
return nil
|
|
}
|