mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-07 18:57:18 -05:00
16 lines
226 B
Go
16 lines
226 B
Go
package d2common
|
|
|
|
type BuildInfoRecord struct {
|
|
Branch string
|
|
Commit string
|
|
}
|
|
|
|
var BuildInfo BuildInfoRecord
|
|
|
|
func SetBuildInfo(branch, commit string) {
|
|
BuildInfo = BuildInfoRecord{
|
|
Branch: branch,
|
|
Commit: commit,
|
|
}
|
|
}
|