mirror of
https://github.com/tailscale/tailscale.git
synced 2025-01-11 02:23:44 +00:00
16 lines
264 B
Go
16 lines
264 B
Go
|
// Copyright (c) Tailscale Inc & AUTHORS
|
||
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
//go:build cgo || !darwin
|
||
|
|
||
|
// systray is a minimal Tailscale systray application.
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"tailscale.com/client/systray"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
new(systray.Menu).Run()
|
||
|
}
|