mirror of
https://github.com/hauler-dev/hauler.git
synced 2026-02-14 09:59:50 +00:00
* removed k3s code * standardize and formatted consts * fixed consts for sync.go * trying another fix for sync --------- Signed-off-by: Zack Brady <zackbrady123@gmail.com>
18 lines
306 B
Go
18 lines
306 B
Go
package v1alpha1
|
|
|
|
import (
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
)
|
|
|
|
type Driver struct {
|
|
metav1.TypeMeta `json:",inline"`
|
|
metav1.ObjectMeta `json:"metadata,omitempty"`
|
|
|
|
Spec DriverSpec `json:"spec"`
|
|
}
|
|
|
|
type DriverSpec struct {
|
|
Type string `json:"type"`
|
|
Version string `json:"version"`
|
|
}
|