Advertisement
Guest User

bot

a guest
Jan 20th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. import asyncio
  2.  
  3. import discord
  4.  
  5. import secrets
  6.  
  7. client = discord.client
  8.  
  9.  
  10. @client.event
  11. @asyncio.coroutine
  12. def on_ready():
  13.     print('Bot is ready')
  14.  
  15.  
  16. client.run(secrets.TOKEN)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement