core/internal/watermill/watermillmsg/tribe.go
Dawid Wysokiński f8c9bdb321
All checks were successful
ci/woodpecker/push/govulncheck Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
feat: add more stats to the Server model (#47)
Reviewed-on: #47
2024-05-07 06:15:37 +00:00

12 lines
314 B
Go

package watermillmsg
import "net/url"
type TribesSyncedEventPayload struct {
ServerKey string `json:"serverKey"`
ServerURL *url.URL `json:"serverUrl"`
VersionCode string `json:"versionCode"`
NumTribes int `json:"numTribes"`
NumActiveTribes int `json:"numActiveTribes"`
}