/
shabrack
/
helloworld
Обзор
Документация
Войти
/
shabrack
/
helloworld
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/ru/example/hello/world/AppLauncher.java
15 строк
541 B
Зюзин Антон Олегович
raw telegram bot implementation
30 сен 2021, 21:48
30 сен 2021, 21:48
253f314
Код
Авторство
О чём код?
package ru.example.hello.world; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.data.r2dbc.repository.config.EnableR2dbcRepositories; import org.springframework.scheduling.annotation.EnableScheduling; @SpringBootApplication @EnableScheduling @EnableR2dbcRepositories("ru.example.hello.world.repository") public class AppLauncher { public static void main(String[] args) { SpringApplication.run(AppLauncher.class, args); } }