Spaces:
Sleeping
Sleeping
from fastapi import FastAPI | |
from .routers.googlelens_router import router | |
app = FastAPI() | |
app.include_router(router) |
from fastapi import FastAPI | |
from .routers.googlelens_router import router | |
app = FastAPI() | |
app.include_router(router) |