Skip to content

Commit 8616969

Browse files
authored
docs: update README.md
1 parent 7c11a01 commit 8616969

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,15 @@ plugin to help developers start writing plugins for the Bedrock Dedicated Server
1414
python-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.

0 commit comments

Comments
 (0)