contentserver/responses/stats.go
2024-03-21 16:03:21 +01:00

11 lines
230 B
Go

package responses
type Stats struct {
NumberOfNodes int `json:"numberOfNodes"`
NumberOfURIs int `json:"numberOfURIs"`
// seconds
RepoRuntime float64 `json:"repoRuntime"`
// seconds
OwnRuntime float64 `json:"ownRuntime"`
}