├── src ├── main │ ├── resources │ │ ├── application.properties │ │ └── templates │ │ │ └── index.html │ └── java │ │ └── in │ │ └── codingboy │ │ └── aioofbot │ │ ├── AioobbotApplication.java │ │ └── MyBot.java └── test │ └── java │ └── in │ └── codingboy │ └── aioofbot │ └── AioofbotApplicationTests.java ├── .gitattributes ├── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── 5.png ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ ├── maven-wrapper.properties │ └── MavenWrapperDownloader.java ├── .gitignore ├── cls ├── LICENSE.md ├── README.md ├── pom.xml ├── mvnw.cmd └── mvnw /src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viralvaghela/Telegram-Bot-Array-Index-Out-Of-Bound/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viralvaghela/Telegram-Bot-Array-Index-Out-Of-Bound/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viralvaghela/Telegram-Bot-Array-Index-Out-Of-Bound/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viralvaghela/Telegram-Bot-Array-Index-Out-Of-Bound/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viralvaghela/Telegram-Bot-Array-Index-Out-Of-Bound/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viralvaghela/Telegram-Bot-Array-Index-Out-Of-Bound/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar 3 | -------------------------------------------------------------------------------- /src/test/java/in/codingboy/aioofbot/AioofbotApplicationTests.java: -------------------------------------------------------------------------------- 1 | package in.codingboy.aioofbot; 2 | 3 | import org.junit.jupiter.api.Test; 4 | import org.springframework.boot.test.context.SpringBootTest; 5 | 6 | @SpringBootTest 7 | class AioofbotApplicationTests { 8 | 9 | @Test 10 | void contextLoads() { 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/main/resources/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 7 | 8 |