OpenDiablo2/main.go

26 lines
557 B
Go
Raw Normal View History

2019-10-24 13:31:59 +00:00
package main
import (
"log"
"github.com/OpenDiablo2/OpenDiablo2/d2app"
2019-10-24 13:31:59 +00:00
)
2019-11-07 03:12:15 +00:00
// GitBranch is set by the CI build process to the name of the branch
//nolint:gochecknoglobals // This is filled in by the build system
2020-12-16 07:11:28 +00:00
var GitBranch string = "local"
2019-11-07 03:12:15 +00:00
// GitCommit is set by the CI build process to the commit hash
//nolint:gochecknoglobals // This is filled in by the build system
2020-12-16 07:11:28 +00:00
var GitCommit string = "build"
2019-10-24 13:31:59 +00:00
func main() {
log.SetFlags(log.Lshortfile)
instance := d2app.Create(GitBranch, GitCommit)
if err := instance.Run(); err != nil {
return
2020-07-08 13:16:16 +00:00
}
}