package main import ( "fmt" "log" "github.com/OpenDiablo2/OpenDiablo2/d2app" ) // GitBranch is set by the CI build process to the name of the branch //nolint:gochecknoglobals // This is filled in by the build system var GitBranch string // GitCommit is set by the CI build process to the commit hash //nolint:gochecknoglobals // This is filled in by the build system var GitCommit string func main() { log.SetFlags(log.Lshortfile) log.Println("OpenDiablo2 - Open source Diablo 2 engine") instance := d2app.Create(GitBranch, GitCommit) if err := instance.Run(); err != nil { fmt.Println(err) return } }