erigon-pulse/cmd/sentry/main.go

18 lines
295 B
Go
Raw Normal View History

package main
import (
2021-05-31 10:20:56 +00:00
"github.com/ledgerwatch/erigon/cmd/sentry/commands"
)
2021-06-10 01:53:06 +00:00
var (
// Following vars are injected through the build flags (see Makefile)
gitCommit string
gitBranch string
)
func main() {
2021-06-10 01:53:06 +00:00
commands.GitCommit = gitCommit
commands.GitCommit = gitBranch
commands.Execute()
}