2017-06-18 05:34:13 +02:00
|
|
|
# Telegram Bot Extensions
|
|
|
|
|
|
|
|
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.telegram/telegrambotsextensions/badge.svg)](http://mvnrepository.com/artifact/org.telegram/telegrambotsextensions)
|
|
|
|
[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](https://github.com/rubenlagus/TelegramBots/blob/master/LICENSE)
|
|
|
|
|
|
|
|
Extensions to default bots implementation of Telegram Bots library
|
|
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Just import add the library to your project with one of these options:
|
|
|
|
|
|
|
|
1. Using Maven Central Repository:
|
|
|
|
|
|
|
|
```xml
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.telegram</groupId>
|
|
|
|
<artifactId>telegrambotsextensions</artifactId>
|
2022-02-02 00:00:54 +01:00
|
|
|
<version>5.7.1</version>
|
2017-06-18 05:34:13 +02:00
|
|
|
</dependency>
|
|
|
|
```
|
|
|
|
|
|
|
|
2. Using Gradle:
|
|
|
|
|
|
|
|
```gradle
|
2022-02-02 00:00:54 +01:00
|
|
|
implementation 'org.telegram:telegrambotsextensions:5.7.1'
|
2017-06-18 05:34:13 +02:00
|
|
|
```
|