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