diff --git a/bot.ini b/bot.ini index 925c034..1e9c076 100644 --- a/bot.ini +++ b/bot.ini @@ -6,3 +6,4 @@ facebook=https://www.facebook.com/ILUGD/ twitter=https://twitter.com/ilugdelhi meetuplink=https://www.meetup.com/ILUGDelhi/ github=https://github.com/ILUGD +coc=https://github.com/ILUGD/Suggestions/issues/2 diff --git a/ilugd.py b/ilugd.py index 8d53c57..f4b12d7 100644 --- a/ilugd.py +++ b/ilugd.py @@ -63,6 +63,12 @@ def github(bot,update): bot.sendChatAction(chat_id=update.message.chat_id, action=ChatAction.TYPING) bot.sendMessage(chat_id=update.message.chat_id, text=config['BOT']['github']) + +def coc(bot,update): + bot.sendChatAction(chat_id=update.message.chat_id, + action=ChatAction.TYPING) + bot.sendMessage(chat_id=update.message.chat_id, text=config['BOT']['coc']) + def help(bot, update): bot.sendChatAction(chat_id=update.message.chat_id, action=ChatAction.TYPING)