All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.khasanof.AbstractFluentBot Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package org.khasanof;

import org.khasanof.config.ApplicationProperties;
import org.telegram.telegrambots.bots.TelegramLongPollingBot;

/**
 * Author: Nurislom
 * 
* Date: 18.06.2023 *
* Time: 10:31 *
* Package: org.khasanof.main */ public abstract class AbstractFluentBot extends TelegramLongPollingBot { protected final MainHandler handler; protected final ApplicationProperties.Bot bot; public AbstractFluentBot(MainHandler handler, ApplicationProperties.Bot bot) { super(bot.getToken()); this.handler = handler; this.bot = bot; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy