mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-11 09:21:49 +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
|
||
|
}
|