mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 23:07:32 +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"
|
|
}
|