16 строки
151 B
Python
16 строки
151 B
Python
from fastapi import FastAPI
|
|
|
|
import config
|
|
|
|
|
|
app = FastAPI(
|
|
title=config.Main.title,
|
|
)
|
|
|
|
|
|
@app.get(
|
|
path='/',
|
|
)
|
|
async def _():
|
|
return ';-)'
|