erigon-pulse/cmd/sentry/main.go
2021-06-10 08:53:06 +07:00

18 lines
295 B
Go

package main
import (
"github.com/ledgerwatch/erigon/cmd/sentry/commands"
)
var (
// Following vars are injected through the build flags (see Makefile)
gitCommit string
gitBranch string
)
func main() {
commands.GitCommit = gitCommit
commands.GitCommit = gitBranch
commands.Execute()
}