mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
10 lines
274 B
Go
10 lines
274 B
Go
package api
|
|
|
|
type BindableService struct {
|
|
Name string `json:"name,omitempty"`
|
|
Namespace string `json:"namespace,omitempty"`
|
|
Kind string `json:"kind,omitempty"`
|
|
APIVersion string `json:"apiVersion,omitempty"`
|
|
Service string `json:"service,omitempty"`
|
|
}
|