14 lines
381 B
Java
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";
|
|
}
|