File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,12 +14,15 @@ plugin to help developers start writing plugins for the Bedrock Dedicated Server
1414python-plugin-template/
1515├── src/ # Main source directory
1616│ └── endstone_plugin/ # Directory for the plugin package
17- │ └── __init__.py # Initializer for the package, containing SamplePlugin class
17+ │ ├── __init__.py # Initializer for the package, importing ExamplePlugin class from example_plugin.py
18+ │ ├── example_plugin.py # Implementation of ExamplePlugin class
19+ │ ├── python_command.py # Implementation of custom command /python with an executor
20+ │ └── test_command.py # Implementation of custom command /test without an executor
1821├── .gitignore # Git ignore rules
1922├── CHANGELOG.md # Changelogs
2023├── LICENSE # License details
2124├── README.md # This file
22- └── pyproject.toml # Plugin configuration file
25+ └── pyproject.toml # Plugin configuration file which specifies the entrypoint
2326```
2427
2528## Getting Started
@@ -71,4 +74,4 @@ python-plugin-template/
7174
7275## License
7376
74- This project is licensed under the MIT License - see the [ LICENSE] ( LICENSE ) file for details.
77+ This project is licensed under the MIT License - see the [ LICENSE] ( LICENSE ) file for details.
You can’t perform that action at this time.
0 commit comments