TDLightTelegramBots/src/main/java/org/telegram/telegrambots/Constants.java
2016-04-12 19:53:21 +02:00

14 lines
381 B
Java

package org.telegram.telegrambots;
/**
* @author Ruben Bermudez
* @version 1.0
* @brief Constants needed for Telegram Bots API
* @date 20 of June of 2015
*/
public class Constants {
public static final String BASEURL = "https://api.telegram.org/bot";
public static final String RESPONSEFIELDOK = "ok";
public static final String RESPONSEFIELDRESULT = "result";
}