mirror of
https://github.com/zitadel/zitadel.git
synced 2025-07-15 10:18:46 +00:00
18 lines
278 B
Go
18 lines
278 B
Go
![]() |
package serviceping
|
||
|
|
||
|
type ReportType uint
|
||
|
|
||
|
const (
|
||
|
ReportTypeBaseInformation ReportType = iota
|
||
|
ReportTypeResourceCounts
|
||
|
)
|
||
|
|
||
|
type ServicePingReport struct {
|
||
|
ReportID string
|
||
|
ReportType ReportType
|
||
|
}
|
||
|
|
||
|
func (r *ServicePingReport) Kind() string {
|
||
|
return "service_ping_report"
|
||
|
}
|