Initial commit

This commit is contained in:
2025-11-19 22:54:33 +07:00
commit 8f5b984598
18 changed files with 761 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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"])