mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 13:34:28 +00:00
14 lines
205 B
Python
14 lines
205 B
Python
|
import asyncio
|
||
|
import discord
|
||
|
|
||
|
client = discord.Client()
|
||
|
|
||
|
|
||
|
@client.event
|
||
|
async def on_ready():
|
||
|
print("Connessione riuscita!")
|
||
|
print(client.user.name)
|
||
|
print(client.user.id)
|
||
|
|
||
|
client.run("token")
|