Skip to content

Commit

Permalink
#4 make ValidateBlueprintStatically public
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-dammeier committed Nov 29, 2023
1 parent 721d2f5 commit 93cee2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/application/blueprintUseCase.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type BlueprintUseCase struct {
doguUseCase DoguInstallationUseCase
}

func (useCase BlueprintUseCase) validateBlueprintStatically(blueprintId string) error {
func (useCase BlueprintUseCase) ValidateBlueprintStatically(blueprintId string) error {
blueprint, err := useCase.repo.getById(blueprintId)
if err != nil {
return fmt.Errorf("cannot validate blueprint: %w", err)
Expand Down

0 comments on commit 93cee2a

Please sign in to comment.