reaction/reaction.go

17 lines
238 B
Go
Raw Normal View History

2023-03-25 18:14:44 +01:00
package main
import (
2023-05-05 12:43:57 +02:00
"framagit.org/ppom/reaction/app"
2023-03-25 18:14:44 +01:00
)
func main() {
2023-12-31 12:00:00 +01:00
app.Main(version, commit)
2023-03-25 18:14:44 +01:00
}
2023-12-31 12:00:00 +01:00
var (
// Must be passed when building
// go build -ldflags "-X app.commit XXX -X app.version XXX"
version string
commit string
)