Files
op25-docker/app/main.py
Logan Cusano 017b73bd1b
Some checks failed
Lint / lint (push) Has been cancelled
Init commit
2025-10-19 02:37:00 -04:00

12 lines
287 B
Python

from fastapi import FastAPI
import routers.op25_controller as op25_controller
from internal.logger import create_logger
# Initialize logging
LOGGER = create_logger(__name__)
# Define FastAPI app
app = FastAPI()
app.include_router(op25_controller.create_op25_router(), prefix="/op25")