mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 09:37:45 +00:00
chore: move the go code into a subfolder
This commit is contained in:
17
apps/api/internal/serviceping/report.go
Normal file
17
apps/api/internal/serviceping/report.go
Normal file
@@ -0,0 +1,17 @@
|
||||
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"
|
||||
}
|
Reference in New Issue
Block a user