add GetMe bot and fix some other bots

This commit is contained in:
2020-06-02 21:48:07 +06:00
parent 0517f451f1
commit d853b6a284
6 changed files with 51 additions and 1 deletions

24
GetMeBot/build.gradle Normal file
View File

@@ -0,0 +1,24 @@
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'kotlin'
apply plugin: 'application'
mainClassName="HelloBotKt"
repositories {
jcenter()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "com.github.insanusmokrassar:TelegramBotAPI-all:$telegram_bot_api_version"
}