delve/cmd/dlv/main.go

15 lines
251 B
Go
Raw Normal View History

2014-05-20 21:29:01 +00:00
package main
import (
"github.com/derekparker/delve/cmd/dlv/cmds"
"github.com/derekparker/delve/version"
)
2015-12-13 21:51:11 +00:00
// Build is the git sha of this binaries build.
var Build string
func main() {
version.DelveVersion.Build = Build
cmds.New().Execute()
}