blob: a73a35e5ead2b2c66969eee557d1826ca9e85be2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Copyright (c) Tailscale Inc & AUTHORS
// SPDX-License-Identifier: BSD-3-Clause
//go:build !linux && !android && !ios
package dns
func (m *directManager) runFileWatcher() {
// Not implemented on other platforms. Maybe it could resort to polling.
}
|