mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-30 01:11:58 +08: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"`
|
|
}
|