blob: ab89097cae41f612f82b17935678b9e9839abeb7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package internal
import (
"github.com/icinga/icingadb/pkg/version"
)
// Version contains version and Git commit information.
//
// The placeholders are replaced on `git archive` using the `export-subst` attribute.
var Version = version.Version("1.1.0", "v1.1.0", "a0093d1df6a227bfc923717072d8cb0e3331799f")
|