11 lines
351 B
Python
11 lines
351 B
Python
from contextlib import asynccontextmanager
|
|
from fastapi import FastAPI
|
|
from app.api.uis import router as uis_router
|
|
|
|
app = FastAPI(
|
|
title="Ingest Service API",
|
|
description="Микросервис для приема событий звонков",
|
|
version="1.0.0",
|
|
)
|
|
|
|
app.include_router(uis_router, prefix="/v1/uis", tags=["UIS Webhooks"]) |