mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
14 lines
144 B
Go
14 lines
144 B
Go
package version
|
|
|
|
import (
|
|
_ "embed"
|
|
"strings"
|
|
)
|
|
|
|
//go:embed VERSION
|
|
var VERSION string
|
|
|
|
func init() {
|
|
VERSION = strings.TrimSpace(VERSION)
|
|
}
|