chore: import upstream snapshot with attribution
Lint test / lint (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 13:34:58 +08:00
commit a203934033
1368 changed files with 175001 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
# Copyright (c) ModelScope Contributors. All rights reserved.
from typing import TYPE_CHECKING
from swift.utils.import_utils import _LazyModule
if TYPE_CHECKING:
from .orm import ORM, AsyncORM, orms
from .prm import PRM, prms
from .rm_plugin import rm_plugins
else:
_import_structure = {
'prm': ['prms', 'PRM'],
'orm': ['orms', 'ORM', 'AsyncORM'],
'rm_plugin': ['rm_plugins'],
}
import sys
sys.modules[__name__] = _LazyModule(
__name__,
globals()['__file__'],
_import_structure,
module_spec=__spec__,
extra_objects={},
)