mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
11 lines
230 B
Go
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"`
|
|
}
|