11 lines
242 B
Python
11 lines
242 B
Python
"""Backwards-compatibility shim for top-level `models` module.
|
|
|
|
Moved into `SYS.models` — preserve old import semantics.
|
|
"""
|
|
|
|
from importlib import import_module
|
|
import sys
|
|
|
|
_real = import_module("SYS.models")
|
|
sys.modules[__name__] = _real
|