mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
### Summary - update the checkout and portal endpoints to use `zeus` instead of license server
17 lines
371 B
Go
17 lines
371 B
Go
package signozio
|
|
|
|
type status string
|
|
|
|
type ValidateLicenseResponse struct {
|
|
Status status `json:"status"`
|
|
Data map[string]interface{} `json:"data"`
|
|
}
|
|
|
|
type CheckoutSessionRedirect struct {
|
|
RedirectURL string `json:"url"`
|
|
}
|
|
type CheckoutResponse struct {
|
|
Status status `json:"status"`
|
|
Data CheckoutSessionRedirect `json:"data"`
|
|
}
|