This commit is contained in:
hanwha
2025-07-04 13:03:00 +09:00
parent 288315c39c
commit 1f4157ed89
2 changed files with 13 additions and 0 deletions

7
app/api/ocr.py Normal file
View File

@@ -0,0 +1,7 @@
from fastapi import APIRouter
router = APIRouter()
@router.post("/")
def init():
return

6
app/main.py Normal file
View File

@@ -0,0 +1,6 @@
from fastapi import FastAPI
from app.api import ocr
app = FastAPI()
app.include_router(ocr.init, prefix='/ocr', tags='OCR')