D-Bot/config.php

20 lines
594 B
PHP
Raw Normal View History

2015-05-29 11:20:55 -05:00
<?php
2015-06-30 02:05:22 -05:00
define('TYPE', 'Telegram-Bot');
2015-06-26 00:19:40 -05:00
define('PATH', dirname(__FILE__).DIRECTORY_SEPARATOR);
define('OWNER_NAME', 'Denny Dai');
2015-06-30 09:44:40 -05:00
define('BOT_NAME', 'D_bot');
define('HELP_BEGIN', "Welcome to use TG-BOT");
2015-06-26 00:19:40 -05:00
define('HELP_END', "GitHub: https://github.com/dennydai/D-bot\nAuthor: @DennyDai");
2015-06-30 15:35:29 -05:00
$TAGs = array('#','/','!');
2015-06-29 09:13:58 -05:00
//For Telegram-Bot
2015-07-02 01:15:47 -05:00
define('TB_TOKEN', 'YOU_TELEGRAM_BOT_TOKEN_HERE');
define('TB_API_URL', 'https://api.telegram.org/bot'.TB_TOKEN.'/');
//For plugins
define('PLUGIN_GITHUB_TOKEN', 'YOU_GITHUB_TOKEN_HERE');
2015-11-17 02:30:03 -06:00
//For Wechat-MP
define('WC_UserName', 'YOU_WECHAT_USERNAME_HERE');