MongoDB Loader
This plugin allows connecting with MongoDB using the latest mongodb-driver-sync library.
Adding as a Dependency to Your Plugin
To use MongoDB Loader in your own Spigot plugin, add the following to your plugin.yml:
- If your plugin requires MongoDB Loader to be present:
depend: [MongoDBLoader]
- If your plugin can work without MongoDB Loader, but will use it if available:
softdepend: [MongoDBLoader]
This ensures your plugin loads in the correct order and can interact with MongoDB Loader if present.