Files
NewWPSBot/Plugins/WPSGardenSystem/__init__.py

26 lines
645 B
Python
Raw Normal View History

2025-11-10 01:15:17 +08:00
from .garden_models import (
GARDEN_CROPS,
GardenCropDefinition,
GardenExtraReward,
register_crop,
2025-11-10 01:15:17 +08:00
)
from .garden_service import GardenService
from .garden_plugin_view import WPSGardenView
from .garden_plugin_plant import WPSGardenPlant
from .garden_plugin_harvest import WPSGardenHarvest
from .garden_plugin_steal import WPSGardenSteal
from .garden_plugin_remove import WPSGardenRemove
__all__ = [
"GardenCropDefinition",
"GardenExtraReward",
"GARDEN_CROPS",
"GardenService",
"register_crop",
2025-11-10 01:15:17 +08:00
"WPSGardenView",
"WPSGardenPlant",
"WPSGardenHarvest",
"WPSGardenSteal",
"WPSGardenRemove",
]