123456789101112131415 |
- # -*- coding: utf-8 -*-
- from typing import Callable, Optional
- from fastapi import FastAPI
- # from app.controllers.equipment.events import regulate_ahu_freq
- def create_start_app_handler(app: Optional[FastAPI] = None) -> Callable:
- async def start_app() -> None:
- # await regulate_ahu_freq()
- pass
- return start_app
|