Поправил MailAutoresponderTelegram
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
059b360d03
commit
ba140017cb
2
pom.xml
2
pom.xml
@ -41,7 +41,7 @@
|
|||||||
<godfather.core.ver>0.0.59-SNAPSHOT</godfather.core.ver>
|
<godfather.core.ver>0.0.59-SNAPSHOT</godfather.core.ver>
|
||||||
|
|
||||||
<!-- https://mvnrepository.com/artifact/org.telegram/telegrambots -->
|
<!-- https://mvnrepository.com/artifact/org.telegram/telegrambots -->
|
||||||
<telegrambots.ver>6.3.0</telegrambots.ver>
|
<telegrambots.ver>6.5.0</telegrambots.ver>
|
||||||
|
|
||||||
<!-- https://mvnrepository.com/artifact/io.smallrye.reactive/smallrye-mutiny-vertx-core -->
|
<!-- https://mvnrepository.com/artifact/io.smallrye.reactive/smallrye-mutiny-vertx-core -->
|
||||||
<smallrye.mutiny.vertx.core.version>2.30.1</smallrye.mutiny.vertx.core.version>
|
<smallrye.mutiny.vertx.core.version>2.30.1</smallrye.mutiny.vertx.core.version>
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package dev.struchkov.godfather.telegram.simple.core;
|
package dev.struchkov.godfather.telegram.simple.core;
|
||||||
|
|
||||||
import dev.struchkov.godfather.main.domain.content.ChatMail;
|
import dev.struchkov.godfather.main.domain.content.ChatMail;
|
||||||
import dev.struchkov.godfather.simple.context.service.PersonSettingService;
|
|
||||||
import dev.struchkov.godfather.simple.core.GeneralAutoResponder;
|
import dev.struchkov.godfather.simple.core.GeneralAutoResponder;
|
||||||
import dev.struchkov.godfather.simple.core.service.StorylineService;
|
import dev.struchkov.godfather.simple.core.service.StorylineService;
|
||||||
|
|
||||||
@ -13,10 +12,9 @@ import dev.struchkov.godfather.simple.core.service.StorylineService;
|
|||||||
public class ChatMailAutoresponderTelegram extends GeneralAutoResponder<ChatMail> {
|
public class ChatMailAutoresponderTelegram extends GeneralAutoResponder<ChatMail> {
|
||||||
|
|
||||||
public ChatMailAutoresponderTelegram(
|
public ChatMailAutoresponderTelegram(
|
||||||
PersonSettingService personSettingService,
|
|
||||||
StorylineService<ChatMail> storyLineService
|
StorylineService<ChatMail> storyLineService
|
||||||
) {
|
) {
|
||||||
super(personSettingService, storyLineService);
|
super(storyLineService);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package dev.struchkov.godfather.telegram.simple.core;
|
package dev.struchkov.godfather.telegram.simple.core;
|
||||||
|
|
||||||
import dev.struchkov.godfather.main.domain.content.Mail;
|
import dev.struchkov.godfather.main.domain.content.Mail;
|
||||||
import dev.struchkov.godfather.simple.context.service.PersonSettingService;
|
|
||||||
import dev.struchkov.godfather.simple.core.GeneralAutoResponder;
|
import dev.struchkov.godfather.simple.core.GeneralAutoResponder;
|
||||||
import dev.struchkov.godfather.simple.core.service.StorylineService;
|
import dev.struchkov.godfather.simple.core.service.StorylineService;
|
||||||
|
|
||||||
@ -13,10 +12,9 @@ import dev.struchkov.godfather.simple.core.service.StorylineService;
|
|||||||
public class MailAutoresponderTelegram extends GeneralAutoResponder<Mail> {
|
public class MailAutoresponderTelegram extends GeneralAutoResponder<Mail> {
|
||||||
|
|
||||||
public MailAutoresponderTelegram(
|
public MailAutoresponderTelegram(
|
||||||
PersonSettingService personSettingService,
|
|
||||||
StorylineService<Mail> storyLineService
|
StorylineService<Mail> storyLineService
|
||||||
) {
|
) {
|
||||||
super(personSettingService, storyLineService);
|
super(storyLineService);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user