2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2021-02-05 16:46:12 +00:00
|
|
|
|
2022-08-02 18:34:03 +00:00
|
|
|
//go:build !windows && go1.19
|
2021-02-05 16:46:12 +00:00
|
|
|
|
2021-03-25 15:59:00 +00:00
|
|
|
package main // import "tailscale.com/cmd/tailscaled"
|
2021-02-05 16:46:12 +00:00
|
|
|
|
|
|
|
import "tailscale.com/logpolicy"
|
|
|
|
|
|
|
|
func isWindowsService() bool { return false }
|
|
|
|
|
|
|
|
func runWindowsService(pol *logpolicy.Policy) error { panic("unreachable") }
|
2021-02-05 17:53:54 +00:00
|
|
|
|
|
|
|
func beWindowsSubprocess() bool { return false }
|