Поправил MailAutoresponderTelegram
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Struchkov Mark 2023-04-23 03:21:43 +03:00
parent 266aa852e2
commit 059b360d03
Signed by: upagge
GPG Key ID: D3018BE7BA428CA6

View File

@ -1,7 +1,6 @@
package dev.struchkov.godfather.telegram.quarkus.core;
import dev.struchkov.godfather.main.domain.content.Mail;
import dev.struchkov.godfather.quarkus.context.service.PersonSettingService;
import dev.struchkov.godfather.quarkus.core.GeneralAutoResponder;
import dev.struchkov.godfather.quarkus.core.service.StorylineService;
@ -12,11 +11,8 @@ import dev.struchkov.godfather.quarkus.core.service.StorylineService;
*/
public class MailAutoresponderTelegram extends GeneralAutoResponder<Mail> {
public MailAutoresponderTelegram(
PersonSettingService personSettingService,
StorylineService<Mail> storyLineService
) {
super(personSettingService, storyLineService);
public MailAutoresponderTelegram(StorylineService<Mail> storyLineService) {
super(storyLineService);
}
}