Files
drb-client-discord-bot/app/main.py
Logan Cusano f9d30b0c8b
All checks were successful
Lint / lint (pull_request) Successful in 19s
Linting
2025-03-04 22:00:02 -05:00

16 lines
425 B
Python

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