mirror of
https://github.com/httprunner/httprunner.git
synced 2026-06-01 13:59:37 +08:00
refactor: move hrp/ to root folder
This commit is contained in:
1
internal/version/VERSION
Normal file
1
internal/version/VERSION
Normal file
@@ -0,0 +1 @@
|
||||
v5.0.0+2502052133
|
||||
13
internal/version/init.go
Normal file
13
internal/version/init.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package version
|
||||
|
||||
import (
|
||||
_ "embed"
|
||||
"strings"
|
||||
)
|
||||
|
||||
//go:embed VERSION
|
||||
var VERSION string
|
||||
|
||||
func init() {
|
||||
VERSION = strings.TrimSpace(VERSION)
|
||||
}
|
||||
Reference in New Issue
Block a user