You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
665 B

11 years ago
package org.telegram;
/**
* @author Ruben Bermudez
* @version 1.0
* @brief Bots configurations
* @date 20 of June of 2015
*/
public class BotConfig {
public static final String TOKENWEATHER = "<bot-token>";
public static final String USERNAMEWEATHER = "weatherbot";
public static final String TOKENTRANSIFEX = "<bot-token>";
public static final String USERNAMETRANSIFEX = "TGlanguagesbot";
public static final String TOKENFILES = "<bot-token>";
public static final String USERNAMEFILES = "filesbot";
public static final String TOKENDIRECTIONS = "<bot-token>";
public static final String USERNAMEDIRECTIONS = "directionsbot";
11 years ago
}