D-Bot/config.php

20 lines
591 B
PHP
Raw Normal View History

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