Files
warewulf/internal/pkg/version/version.go
2022-01-15 04:00:18 +00:00

12 lines
191 B
Go

package version
import (
"fmt"
"github.com/hpcng/warewulf/internal/pkg/buildconfig"
)
func GetVersion() string {
return fmt.Sprintf("%s-%s", buildconfig.VERSION, buildconfig.RELEASE)
}