#3 -- Rename controller
All checks were successful
CI fuzzy controller / container-test-job (push) Successful in 1m5s

This commit is contained in:
Anton Romanov 2025-02-25 12:43:12 +04:00
parent 78fe8236be
commit 1f3caff440

View File

@ -13,10 +13,10 @@ import ru.ulstu.fc.rule.service.FuzzyRuleService;
@Controller
@RequestMapping("rule")
public class RuleController {
public class FuzzyRuleController {
private final FuzzyRuleService ruleService;
public RuleController(FuzzyRuleService ruleService) {
public FuzzyRuleController(FuzzyRuleService ruleService) {
this.ruleService = ruleService;
}