9569103edd
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
371 B
Python
12 lines
371 B
Python
from fastapi import FastAPI
|
|
|
|
from .routes import files, stream, markers, export, hidden
|
|
|
|
app = FastAPI(title="8-cut Server")
|
|
|
|
app.include_router(files.router, prefix="/api")
|
|
app.include_router(stream.router, prefix="/api")
|
|
app.include_router(markers.router, prefix="/api")
|
|
app.include_router(export.router, prefix="/api")
|
|
app.include_router(hidden.router, prefix="/api")
|