9 lines
327 B
Python
9 lines
327 B
Python
# -*- coding: utf-8 -*-
|
|
"""world_sync module top-level package.
|
|
|
|
Re-exports the backend package so both `from world_sync import load_world_sync`
|
|
and `from world_sync.world_sync.init import load_world_sync` work.
|
|
"""
|
|
from world_sync.world_sync import * # noqa: F401,F403
|
|
from world_sync.world_sync import __all__ # noqa: F401
|