1
0
mirror of https://github.com/go-acme/lego.git synced 2025-01-21 21:29:26 +02:00

30 lines
739 B
Go
Raw Normal View History

// Code generated by 'internal/releaser'; DO NOT EDIT.
package useragent
import (
"fmt"
"net/http"
"runtime"
)
const (
// ourUserAgent is the User-Agent of this underlying library package.
2024-12-20 15:11:10 +01:00
ourUserAgent = "goacme-lego/4.21.0"
// ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package.
// values: detach|release
// NOTE: Update this with each tagged release.
2024-12-20 15:11:10 +01:00
ourUserAgentComment = "release"
)
// Get builds and returns the User-Agent string.
func Get() string {
return fmt.Sprintf("%s (%s; %s; %s)", ourUserAgent, ourUserAgentComment, runtime.GOOS, runtime.GOARCH)
}
// SetHeader sets the User-Agent header.
func SetHeader(h http.Header) {
h.Set("User-Agent", Get())
}