13 lines
289 B
Java
Raw Normal View History

2016-01-14 23:09:19 +01:00
package org.telegram.telegrambots.api;
2016-01-14 01:14:53 +01:00
/**
* @author Ruben Bermudez
* @version 1.0
* @brief TODO
* @date 20 of June of 2015
*/
public class Constants {
2016-01-20 21:42:28 +01:00
public static final String BASEURL = "https://api.telegram.org/bot";
public static final int SOCKET_TIMEOUT = 30 * 1000;
2016-01-14 01:14:53 +01:00
}