2021-02-05 16:46:12 +00:00
|
|
|
// Copyright (c) 2021 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.
|
|
|
|
|
2022-08-02 18:34:03 +00:00
|
|
|
//go:build !windows && go1.19
|
|
|
|
// +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 }
|