This commit is contained in:
michplunkett
2025-03-10 23:52:54 -05:00
parent 297f8810be
commit 0e2122b72f
3 changed files with 4 additions and 3 deletions

View File

@@ -6,7 +6,8 @@ from auto_archiver.core import Media, Metadata
from app.shared import schemas
from app.shared.db import models
from app.worker.main import create_archive_task, create_sheet_task, get_all_urls
from app.web.utils.misc import get_all_urls
from app.worker.main import create_archive_task, create_sheet_task
class TestCreateArchiveTask:

View File

@@ -9,12 +9,12 @@ from loguru import logger
from sqlalchemy.orm import Session
from app.shared import business_logic, schemas
from app.shared.aa_utils import get_all_urls
from app.shared.db import models, worker_crud
from app.shared.db.database import get_db_dependency
from app.shared.log import log_error
from app.web.config import ALLOW_ANY_EMAIL
from app.web.security import token_api_key_auth
from app.web.utils.misc import get_all_urls
interoperability_router = APIRouter(

View File

@@ -8,12 +8,12 @@ from loguru import logger
from sqlalchemy import exc
from app.shared import business_logic, schemas
from app.shared.aa_utils import get_all_urls
from app.shared.db import models, worker_crud
from app.shared.db.database import get_db
from app.shared.log import log_error
from app.shared.settings import get_settings
from app.shared.task_messaging import get_celery, get_redis
from app.web.utils.misc import get_all_urls
from app.worker.worker_log import setup_celery_logger