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.
|
|
|
|
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 WEATHER_TOKEN = "<token>";
|
|
|
|
|
public static final String WEATHER_USER = "weatherbot";
|
|
|
|
|
|
|
|
|
|
public static final String TRANSIFEX_TOKEN = "<token>";
|
|
|
|
|
public static final String TRANSIFEX_USER = "TGlanguagesbot";
|
|
|
|
|
|
|
|
|
|
public static final String FILES_TOKEN = "<token>";
|
|
|
|
|
public static final String FILES_USER = "filesbot";
|
|
|
|
|
|
|
|
|
|
public static final String DIRECTIONS_TOKEN = "<token>";
|
|
|
|
|
public static final String DIRECTIONS_USER = "directionsbot";
|
|
|
|
|
|
|
|
|
|
public static final String CHANNEL_TOKEN = "<token>";
|
|
|
|
|
public static final String CHANNEL_USER = "channelupdatesbot";
|
|
|
|
|
|
|
|
|
|
public static final String RAE_TOKEN = "<token>";
|
|
|
|
|
public static final String RAE_USER = "raebot";
|
|
|
|
|
|
|
|
|
|
public static final String WEBHOOK_TOKEN = "<token>";
|
|
|
|
|
public static final String WEBHOOK_USER = "webhooksamplebot";
|
|
|
|
|
|
|
|
|
|
public static final String COMMANDS_TOKEN = "<token>";
|
|
|
|
|
public static final String COMMANDS_USER = "MyCommandsBot";
|
|
|
|
|
}
|