capichat/main.py

9 lines
99 B
Python
Raw Normal View History

2023-03-22 22:16:59 -03:00
from fastapi import FastAPI
2023-03-30 11:13:07 -03:00
app =FastAPI()
@app.get("/")
def get_lobby():
return "holassss"