i don't know how to explain this, i tried my best but cant improve the situatuion
@RequiredArgsConstructor
public class BotStartupRunner implements CommandLineRunner {
private final BotHelper botHelper;
@Override
public void run(String... args) {
botHelper.someMethod(); // вызываем метод
}
}```