2020-08-01 04:27:09 +08:00
|
|
|
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package dns
|
|
|
|
|
2021-04-02 14:26:52 +08:00
|
|
|
import "tailscale.com/types/logger"
|
|
|
|
|
2021-04-13 06:51:37 +08:00
|
|
|
func NewOSConfigurator(logger.Logf, string) (OSConfigurator, error) {
|
2021-06-26 00:43:13 +08:00
|
|
|
return newDirectManager(), nil
|
2020-08-01 04:27:09 +08:00
|
|
|
}
|