CoolFace
Apppublic

blong12/API_Arduino_video_stream

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
__init__.py8 linesDownload Raw Back to app
1from fastapi import FastAPI2from app.routes import router3 4 5def create_app():6    app = FastAPI()7    app.include_router(router)8    return app