mirror of
https://framagit.org/ppom/reaction
synced 2026-03-14 12:45:47 +01:00
16 lines
238 B
Go
16 lines
238 B
Go
package main
|
|
|
|
import (
|
|
"framagit.org/ppom/reaction/app"
|
|
)
|
|
|
|
func main() {
|
|
app.Main(version, commit)
|
|
}
|
|
|
|
var (
|
|
// Must be passed when building
|
|
// go build -ldflags "-X app.commit XXX -X app.version XXX"
|
|
version string
|
|
commit string
|
|
)
|