12 lines
214 B
Python
12 lines
214 B
Python
"""MSYNC OGM(对象全局映射)模块
|
||
|
||
薄封装:直接转发到 gvsds.apps.msync.ogm 原生层。
|
||
"""
|
||
|
||
from gvsds.apps.msync.ogm import OGMManager, OGMError
|
||
|
||
__all__ = [
|
||
'OGMManager',
|
||
'OGMError',
|
||
]
|