mirror of
https://github.com/tailscale/tailscale.git
synced 2026-07-20 21:23:07 +08:00
This was missing in the earlier f5eac39ea7 and meant that tsnet users weren't
getting (all of) acme support.
Thanks to @ChaosInTheCRD and @BeckyPauley for debugging.
Updates #12614
Updates #20252
Change-Id: I176a7b179b2ad3726aca484057f0aae7cc3561c8
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
13 lines
357 B
Go
13 lines
357 B
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build !js && !ts_omit_acme
|
|
|
|
package tsnet
|
|
|
|
// Link in the ACME/TLS-cert feature so [Server.CertDomains],
|
|
// [Server.ListenTLS], and related cert-fetch paths work out of the box.
|
|
// Build with the ts_omit_acme tag to omit it.
|
|
|
|
import _ "tailscale.com/feature/acme"
|