mirror of
https://github.com/containrrr/watchtower.git
synced 2025-09-21 21:30:48 +02:00
14 lines
246 B
Go
14 lines
246 B
Go
![]() |
package meta
|
||
|
|
||
|
var (
|
||
|
// Version is the compile-time set version of Watchtower
|
||
|
Version = "v0.0.0-unknown"
|
||
|
|
||
|
// UserAgent is the http client identifier derived from Version
|
||
|
UserAgent string
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
UserAgent = "Watchtower/" + Version
|
||
|
}
|