mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-09 12:31:21 +00:00
18 lines
295 B
Go
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()
|
|
}
|