Dmitry Beresnev
test hello world app
5016313
raw
history blame contribute delete
230 Bytes
'''
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"}