mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
13 lines
205 B
Python
13 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")
|