ttk-bot / server.py
randydev's picture
Update server.py
0a54fe2 verified
raw
history blame
202 Bytes
import os
import uvicorn
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def hello():
return "Running Bot"
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=7860)