11 lines
224 B
Go
11 lines
224 B
Go
// Package version contains version information
|
|
package version
|
|
|
|
const (
|
|
// Version is the software version
|
|
Version = "3.0.0-rc.2"
|
|
|
|
// UserAgent is the OONI user-agent header
|
|
UserAgent = "ooniprobe-desktop/" + Version
|
|
)
|