mirror of
https://github.com/tailscale/tailscale.git
synced 2025-05-23 07:48:30 +00:00
13 lines
410 B
Go
13 lines
410 B
Go
![]() |
// Copyright (c) Tailscale Inc & AUTHORS
|
||
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
// Package tailscaledhooks provides hooks for optional features
|
||
|
// to add to during init that tailscaled calls at runtime.
|
||
|
package tailscaledhooks
|
||
|
|
||
|
import "tailscale.com/feature"
|
||
|
|
||
|
// UninstallSystemDaemonWindows is called when the Windows
|
||
|
// system daemon is uninstalled.
|
||
|
var UninstallSystemDaemonWindows feature.Hooks[func()]
|