9f94d9d
be62f09
9f94d9d
0c9698b
9f94d9d
0c9698b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | '''
from src.telegram_bot import main as telegram_bot
if __name__ == "__main__":
telegram_bot()
'''
from fastapi import FastAPI
import uvicorn
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}
|