Skip to content

Commit

Permalink
moves Endpoints to BindingResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSp1der committed Jul 10, 2024
1 parent 41797d5 commit cdd667b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions domain/apiresponses/responses.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ type BindingResponse struct {
RouteServiceURL string `json:"route_service_url,omitempty"`
VolumeMounts []domain.VolumeMount `json:"volume_mounts,omitempty"`
BackupAgentURL string `json:"backup_agent_url,omitempty"`
Endpoints []domain.Endpoint `json:"endpoints,omitempty"`
}

type GetBindingResponse struct {
BindingResponse
Parameters any `json:"parameters,omitempty"`
Endpoints []domain.Endpoint `json:"endpoints,omitempty"`
Parameters any `json:"parameters,omitempty"`
}

type UnbindResponse struct {
Expand Down

0 comments on commit cdd667b

Please sign in to comment.