10 lines
256 B
Go
10 lines
256 B
Go
|
package system
|
||
|
|
||
|
type System struct {
|
||
|
IsInitialized bool `json:"isInitialized"`
|
||
|
Version string `json:"version"`
|
||
|
LastCommitTime string `json:"lastCommitTime"`
|
||
|
LastCommitId string `json:"lastCommitId"`
|
||
|
Branch string `json:"branch"`
|
||
|
}
|