Skip to content

Commit

Permalink
Merge pull request #4 from Motouom/remotes/origin/feature/Basic-class…
Browse files Browse the repository at this point in the history
…es-for-each-service-#64

feat: added annotation ensure classes are recognized as Spring Beans
  • Loading branch information
AssahBismarkabah authored Mar 6, 2024
2 parents 5fe98ff + 7862f1e commit 97c552e
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
package com.adorsys.gis.powerpay.powerpaybackend.services;

import org.springframework.stereotype.Component;
import org.springframework.stereotype.Service;

@Service // annotation to ensure classes are recognized as Spring Beans
@Component
public class CheckBalanceImpl implements CheckBalance {

}

0 comments on commit 97c552e

Please sign in to comment.