mirror of
https://codeberg.org/scip/tablizer.git
synced 2025-12-18 13:01:11 +01:00
12 lines
229 B
Go
12 lines
229 B
Go
package zygo
|
|
|
|
import "fmt"
|
|
|
|
// version information. See Makefile and gitcommit.go for update/init.
|
|
var GITLASTTAG string
|
|
var GITLASTCOMMIT string
|
|
|
|
func Version() string {
|
|
return fmt.Sprintf("%s/%s", GITLASTTAG, GITLASTCOMMIT)
|
|
}
|