mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-06 23:32:47 +01:00
14 lines
155 B
Go
14 lines
155 B
Go
package catalyst
|
|
|
|
import (
|
|
_ "embed"
|
|
"strings"
|
|
)
|
|
|
|
//go:embed VERSION
|
|
var VERSION string
|
|
|
|
func GetVersion() string {
|
|
return strings.TrimSpace(VERSION)
|
|
}
|