From de9ab91533b36271e0235af247c1a042b3f130eb Mon Sep 17 00:00:00 2001 From: develop Date: Sat, 29 Aug 2026 12:35:20 +0800 Subject: [PATCH] =?UTF-8?q?fix(world):=20=E5=88=A0=E9=99=A4=E6=A8=A1?= =?UTF-8?q?=E5=9D=97=E6=A0=B9=E7=9B=AE=E5=BD=95=E9=81=97=E7=95=99=20=5F=5F?= =?UTF-8?q?init=5F=5F.py=EF=BC=88=E8=A7=84=E8=8C=83=EF=BC=9A=E5=8C=85?= =?UTF-8?q?=E7=9B=AE=E5=BD=95=E4=B8=BA=20world/world/=EF=BC=8C=E6=A0=B9?= =?UTF-8?q?=E7=9B=AE=E5=BD=95=E4=B8=8D=E6=94=BE=20=5F=5Finit=5F=5F.py?= =?UTF-8?q?=EF=BC=8C=E9=81=BF=E5=85=8D=E6=89=93=E5=8C=85=20import=20?= =?UTF-8?q?=E6=AD=A7=E4=B9=89=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __init__.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 __init__.py diff --git a/__init__.py b/__init__.py deleted file mode 100644 index 36ef2f9..0000000 --- a/__init__.py +++ /dev/null @@ -1,19 +0,0 @@ -# -*- 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", -]