f8c94e43bb
change api group name to seaweedfs.com
11 lines
289 B
Go
11 lines
289 B
Go
package apis
|
|
|
|
import (
|
|
"github.com/seaweedfs/seaweedfs-operator/pkg/apis/seaweedfs/v1alpha1"
|
|
)
|
|
|
|
func init() {
|
|
// Register the types with the Scheme so the components can map objects to GroupVersionKinds and back
|
|
AddToSchemes = append(AddToSchemes, v1alpha1.SchemeBuilder.AddToScheme)
|
|
}
|