refactor: move hrp/ to root folder

This commit is contained in:
lilong.129
2025-02-06 10:52:08 +08:00
parent 9376692b71
commit 1f063dd6f7
221 changed files with 206 additions and 211 deletions

1
internal/version/VERSION Normal file
View File

@@ -0,0 +1 @@
v5.0.0+2502052133

13
internal/version/init.go Normal file
View File

@@ -0,0 +1,13 @@
package version
import (
_ "embed"
"strings"
)
//go:embed VERSION
var VERSION string
func init() {
VERSION = strings.TrimSpace(VERSION)
}