Files
ocr-python/app/main.py
hanwha 1f4157ed89 start
2025-07-04 13:03:00 +09:00

6 lines
125 B
Python

from fastapi import FastAPI
from app.api import ocr
app = FastAPI()
app.include_router(ocr.init, prefix='/ocr', tags='OCR')