org.khasanof.StateConfigurerAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-state Show documentation
Show all versions of fluent-state Show documentation
Fluent - Easy Telegram Bots with Spring
The newest version!
package org.khasanof;
import org.khasanof.state.configurer.StateConfigurer;
/**
* @author Nurislom
* @see org.khasanof
* @since 8/15/2023 9:09 PM
*/
public interface StateConfigurerAdapter {
/**
*
* @param state
* @throws Exception
*/
void configure(StateConfigurer state) throws Exception;
}