file.py 521 B

123456789
  1. from typing import Type
  2. from config.storage import settings
  3. from app.libs.class_loader import load_class
  4. from app.services.file.impl.base import BaseFileService
  5. #FileService: Type[BaseFileService] = load_class(name="app.services.file.impl.oss_file.OSSFileService")
  6. FileService: Type[BaseFileService] = load_class(name=settings.FILE_SERVICE_MODULE)
  7. print("==========================================1========================1=============================================================1=============")
  8. print(FileService)