├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── .ci-java-version │ ├── check.yml │ ├── release.yml │ └── update-gradle-wrapper.yml ├── .gitignore ├── LICENSE ├── README.md ├── api-spec ├── telegram-bot-api.args.json ├── telegram-bot-api.html └── telegram-bot-api.json ├── api └── tbot-api.api ├── docs └── release.md ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts ├── src ├── main │ ├── generated-kotlin │ │ └── me │ │ │ └── alllex │ │ │ └── tbot │ │ │ └── api │ │ │ ├── client │ │ │ └── TelegramBotUpdateListener.kt │ │ │ └── model │ │ │ ├── Methods.kt │ │ │ ├── RequestTypes.kt │ │ │ ├── TryMethods.kt │ │ │ ├── TryRequestMethods.kt │ │ │ ├── TryWithContextMethods.kt │ │ │ ├── Types.kt │ │ │ └── WithContextMethods.kt │ └── kotlin │ │ └── me │ │ └── alllex │ │ └── tbot │ │ └── api │ │ ├── client │ │ ├── TelegramBotApiClient.kt │ │ ├── TelegramBotApiContext.kt │ │ ├── TelegramBotApiException.kt │ │ ├── TelegramBotApiPoller.kt │ │ ├── TelegramBotUpdateHandler.kt │ │ └── TelegramResponse.kt │ │ └── model │ │ ├── Helpers.kt │ │ ├── InlineKeyboardMarkupBuilder.kt │ │ ├── ParseMode.kt │ │ └── util.kt └── test │ ├── kotlin │ └── me │ │ └── alllex │ │ └── tbot │ │ ├── api │ │ └── client │ │ │ ├── TelegramBotApiClientTest.kt │ │ │ └── TelegramBotApiPollerTest.kt │ │ └── demo │ │ └── EchoBot.kt │ └── resources │ └── log4j2-test.properties └── version.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/.ci-java-version: -------------------------------------------------------------------------------- 1 | 17 2 | -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/update-gradle-wrapper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/.github/workflows/update-gradle-wrapper.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/README.md -------------------------------------------------------------------------------- /api-spec/telegram-bot-api.args.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/api-spec/telegram-bot-api.args.json -------------------------------------------------------------------------------- /api-spec/telegram-bot-api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/api-spec/telegram-bot-api.html -------------------------------------------------------------------------------- /api-spec/telegram-bot-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/api-spec/telegram-bot-api.json -------------------------------------------------------------------------------- /api/tbot-api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/api/tbot-api.api -------------------------------------------------------------------------------- /docs/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/docs/release.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/generated-kotlin/me/alllex/tbot/api/client/TelegramBotUpdateListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/generated-kotlin/me/alllex/tbot/api/client/TelegramBotUpdateListener.kt -------------------------------------------------------------------------------- /src/main/generated-kotlin/me/alllex/tbot/api/model/Methods.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/generated-kotlin/me/alllex/tbot/api/model/Methods.kt -------------------------------------------------------------------------------- /src/main/generated-kotlin/me/alllex/tbot/api/model/RequestTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/generated-kotlin/me/alllex/tbot/api/model/RequestTypes.kt -------------------------------------------------------------------------------- /src/main/generated-kotlin/me/alllex/tbot/api/model/TryMethods.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/generated-kotlin/me/alllex/tbot/api/model/TryMethods.kt -------------------------------------------------------------------------------- /src/main/generated-kotlin/me/alllex/tbot/api/model/TryRequestMethods.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/generated-kotlin/me/alllex/tbot/api/model/TryRequestMethods.kt -------------------------------------------------------------------------------- /src/main/generated-kotlin/me/alllex/tbot/api/model/TryWithContextMethods.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/generated-kotlin/me/alllex/tbot/api/model/TryWithContextMethods.kt -------------------------------------------------------------------------------- /src/main/generated-kotlin/me/alllex/tbot/api/model/Types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/generated-kotlin/me/alllex/tbot/api/model/Types.kt -------------------------------------------------------------------------------- /src/main/generated-kotlin/me/alllex/tbot/api/model/WithContextMethods.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/generated-kotlin/me/alllex/tbot/api/model/WithContextMethods.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/alllex/tbot/api/client/TelegramBotApiClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/kotlin/me/alllex/tbot/api/client/TelegramBotApiClient.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/alllex/tbot/api/client/TelegramBotApiContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/kotlin/me/alllex/tbot/api/client/TelegramBotApiContext.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/alllex/tbot/api/client/TelegramBotApiException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/kotlin/me/alllex/tbot/api/client/TelegramBotApiException.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/alllex/tbot/api/client/TelegramBotApiPoller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/kotlin/me/alllex/tbot/api/client/TelegramBotApiPoller.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/alllex/tbot/api/client/TelegramBotUpdateHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/kotlin/me/alllex/tbot/api/client/TelegramBotUpdateHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/alllex/tbot/api/client/TelegramResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/kotlin/me/alllex/tbot/api/client/TelegramResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/alllex/tbot/api/model/Helpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/kotlin/me/alllex/tbot/api/model/Helpers.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/alllex/tbot/api/model/InlineKeyboardMarkupBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/kotlin/me/alllex/tbot/api/model/InlineKeyboardMarkupBuilder.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/alllex/tbot/api/model/ParseMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/kotlin/me/alllex/tbot/api/model/ParseMode.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/alllex/tbot/api/model/util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/main/kotlin/me/alllex/tbot/api/model/util.kt -------------------------------------------------------------------------------- /src/test/kotlin/me/alllex/tbot/api/client/TelegramBotApiClientTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/test/kotlin/me/alllex/tbot/api/client/TelegramBotApiClientTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/me/alllex/tbot/api/client/TelegramBotApiPollerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/test/kotlin/me/alllex/tbot/api/client/TelegramBotApiPollerTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/me/alllex/tbot/demo/EchoBot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/test/kotlin/me/alllex/tbot/demo/EchoBot.kt -------------------------------------------------------------------------------- /src/test/resources/log4j2-test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alllex/telegram-bot-kit/HEAD/src/test/resources/log4j2-test.properties -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.10.1 2 | --------------------------------------------------------------------------------