mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
12 lines
162 B
Go
12 lines
162 B
Go
package models
|
|
|
|
type SystemStats struct {
|
|
DashboardCount int
|
|
UserCount int
|
|
OrgCount int
|
|
}
|
|
|
|
type GetSystemStatsQuery struct {
|
|
Result *SystemStats
|
|
}
|