mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Created main file
This commit is contained in:
parent
b5ad0aaf85
commit
6d503a0488
1 changed files with 13 additions and 0 deletions
13
main.py
Normal file
13
main.py
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
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")
|
Loading…
Reference in a new issue