8 lines
147 B
Go
8 lines
147 B
Go
package models
|
|
|
|
type BuildInformation struct {
|
|
Version string `json:"version"`
|
|
Commit string `json:"commit"`
|
|
Created string `json:"created"`
|
|
}
|