2021-02-05 08:46:12 -08: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-03-18 07:44:05 -07:00
|
|
|
//go:build !windows && go1.18
|
|
|
|
// +build !windows,go1.18
|
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 }
|