mirror of
https://github.com/traefik/traefik.git
synced 2025-09-23 06:41:13 +02:00
10 lines
323 B
Go
10 lines
323 B
Go
package v1alpha1
|
|
|
|
// ObjectReference is a generic reference to a Traefik resource.
|
|
type ObjectReference struct {
|
|
// Name defines the name of the referenced Traefik resource.
|
|
Name string `json:"name"`
|
|
// Namespace defines the namespace of the referenced Traefik resource.
|
|
Namespace string `json:"namespace,omitempty"`
|
|
}
|