20 lines
349 B
Python
20 lines
349 B
Python
# -*- coding: utf-8 -*-
|
|
"""world 模块仓库根。实际 Python 包为 world/ 子目录。"""
|
|
from .world import (
|
|
load_world,
|
|
list_worlds,
|
|
get_world,
|
|
create_world,
|
|
update_world,
|
|
delete_world,
|
|
)
|
|
|
|
__all__ = [
|
|
"load_world",
|
|
"list_worlds",
|
|
"get_world",
|
|
"create_world",
|
|
"update_world",
|
|
"delete_world",
|
|
]
|