release.go 518 B

123456789101112131415
  1. // Copyright (c) Tailscale Inc & AUTHORS
  2. // SPDX-License-Identifier: BSD-3-Clause
  3. // Package release provides functionality for building client releases.
  4. package release
  5. import "embed"
  6. // This contains all files in the release directory,
  7. // notably the files needed for deb, rpm, and similar packages.
  8. // Because we assign this to the blank identifier, it does not actually embed the files.
  9. // However, this does cause `go mod vendor` to include the files when vendoring the package.
  10. //
  11. //go:embed *
  12. var _ embed.FS