mirror of
https://github.com/zoriya/Nemo.git
synced 2025-12-06 02:46:10 +00:00
Clean start
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
.idea/
|
||||
venv/
|
||||
16
nemo.py
Normal file
16
nemo.py
Normal file
@@ -0,0 +1,16 @@
|
||||
#! /usr/bin/env python3
|
||||
|
||||
import discord
|
||||
import os
|
||||
|
||||
|
||||
class Client(discord.Client):
|
||||
async def on_ready(self):
|
||||
print(f"Logged in as {self.user}.")
|
||||
|
||||
async def on_message(self):
|
||||
pass
|
||||
|
||||
|
||||
client = Client()
|
||||
client.login(os.environ["NEMO_TOKEN"])
|
||||
Reference in New Issue
Block a user