mirror of
https://github.com/tailscale/tailscale.git
synced 2026-03-25 09:42:39 -04:00
Updates tailscale/corp#12154 Change-Id: I8b253ce964f62736678f44bdf67881430636b14a Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
13 lines
315 B
Go
13 lines
315 B
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// Package docs embeds certain docs, making them available for other packages.
|
|
package docs
|
|
|
|
import _ "embed"
|
|
|
|
// CommitMessages is the contents of commit-messages.md.
|
|
//
|
|
//go:embed commit-messages.md
|
|
var CommitMessages string
|