Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Service ¶
type Service interface { CreateImageRegistry(ctx context.Context, projectID string, imageRegistryInfo model.ImageRegistryInput) (*model.ImageRegistryResponse, error) UpdateImageRegistry(ctx context.Context, imageRegistryID string, projectID string, imageRegistryInfo model.ImageRegistryInput) (*model.ImageRegistryResponse, error) DeleteImageRegistry(ctx context.Context, imageRegistryID string, projectID string) (string, error) GetImageRegistry(ctx context.Context, projectID string) (*model.ImageRegistryResponse, error) ListImageRegistries(ctx context.Context, projectID string) ([]*model.ImageRegistryResponse, error) }
Service is the interface for the image registry service
func NewImageRegistryService ¶
func NewImageRegistryService(imageRegistryOperator *dbOperationsImageRegistry.Operator) Service
NewImageRegistryService returns a new instance of imageRegistryService
Click to show internal directories.
Click to hide internal directories.