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