2019-11-19 11:29:15 +00:00
|
|
|
package apis
|
|
|
|
|
|
|
|
import (
|
2019-11-20 03:33:30 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs-operator/pkg/apis/seaweedfs/v1alpha1"
|
2019-11-19 11:29:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
// Register the types with the Scheme so the components can map objects to GroupVersionKinds and back
|
|
|
|
AddToSchemes = append(AddToSchemes, v1alpha1.SchemeBuilder.AddToScheme)
|
|
|
|
}
|