3-parse-rule #10

Merged
romanov73 merged 17 commits from 3-parse-rule into master 2025-02-25 13:34:08 +04:00
Showing only changes of commit 1f3caff440 - Show all commits

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;
}