feat: added a twist

This commit is contained in:
2026-04-01 00:53:55 +02:00
parent 0b7deee59e
commit b40c6436cd
76 changed files with 15121 additions and 64 deletions

View File

@@ -4,12 +4,12 @@ from pathlib import Path
from fastapi import FastAPI
from fastapi.staticfiles import StaticFiles
from converter import router as converter_router
from pages import router as pages_router
from graph import router as graph_router
from docker_utils import router as docker_router
from converter import router as converter_router
app = FastAPI(title="Micron Page Editor")
app = FastAPI(title="µFrame Editor")
app.include_router(converter_router, prefix="/api")
app.include_router(pages_router, prefix="/api")