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.

23 lines
884 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 = "<token>";
public static final String USERNAMEWEATHER = "weatherbot";
public static final String TOKENTRANSIFEX = "<token>";
public static final String USERNAMETRANSIFEX = "TGlanguagesbot";
public static final String TOKENFILES = "<token>";
public static final String USERNAMEFILES = "filesbot";
public static final String TOKENDIRECTIONS = "<token>";
public static final String USERNAMEDIRECTIONS = "directionsbot";
public static final String TOKENCHANNEL = "<token>";
public static final String USERNAMECHANNEL = "channelupdatesbot";
public static final String TOKENRAE = "<token>";
public static final String USERNAMERAE = "raebot";
11 years ago
}