* feat: custom user agent (#990)
* fix: move build meta to own package this allows it to be referenced from other packages without causing a cyclic dependency * feat: custom user agentfeature/http-overhaul
parent
b196629d04
commit
f508c92ae0
@ -0,0 +1,13 @@
|
||||
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
|
||||
}
|
Loading…
Reference in New Issue