2020-07-31 21:27:09 +01: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 07:26:52 +01:00
|
|
|
import "tailscale.com/types/logger"
|
|
|
|
|
2021-04-12 23:51:37 +01:00
|
|
|
func NewOSConfigurator(logger.Logf, string) (OSConfigurator, error) {
|
2021-06-25 17:43:13 +01:00
|
|
|
return newDirectManager(), nil
|
2020-07-31 21:27:09 +01:00
|
|
|
}
|