6 lines
125 B
Python
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') |