mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-05 00:53:58 -04:00
20 lines
278 B
Go
20 lines
278 B
Go
package dns
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type ShutdownState struct{}
|
|
|
|
func (s *ShutdownState) Name() string {
|
|
return "dns_state"
|
|
}
|
|
|
|
func (s *ShutdownState) Cleanup() error {
|
|
return nil
|
|
}
|
|
|
|
func (s *ShutdownState) RestoreUncleanShutdownConfigs(context.Context) error {
|
|
return nil
|
|
}
|