Added dotenv part 2

This commit is contained in:
nin0dev 2024-06-17 18:09:56 -04:00
parent 3060e551dd
commit 5f9519b54d

View file

@ -1,9 +1,14 @@
import asyncio
import os
import websockets
from dotenv import load_dotenv
load_dotenv()
CONNECTIONS = set()
EAS_MESSAGE = ""
TOKEN = "o6LD27y63M0b360Pjd5B"
TOKEN = os.getenv("TOKEN")
async def handle(websocket):