delve/cmd/dlv/main.go
2017-02-08 12:17:19 -08:00

15 lines
255 B
Go

package main
import (
"github.com/derekparker/delve/cmd/dlv/cmds"
"github.com/derekparker/delve/pkg/version"
)
// Build is the git sha of this binaries build.
var Build string
func main() {
version.DelveVersion.Build = Build
cmds.New().Execute()
}