8 lines
182 B
Go
8 lines
182 B
Go
package schema
|
|
|
|
// BackendResponse represents the response for backend operations
|
|
type BackendResponse struct {
|
|
ID string `json:"id"`
|
|
StatusURL string `json:"status_url"`
|
|
}
|