To create an addon, you need to implement the IAddon interface provided by Aoba's API. Your addon must be registered as a Fabric
entrypoint using the aoba namespace in your fabric.mod.json. For a working example to get started with, check out the
Aoba Addon Template on GitHub.
Your addon class must implement the following:
Register your addon in fabric.mod.json under the aoba entrypoint:
"entrypoints": {
"aoba": [
"com.example.MyAddon"
]
}
Once registered, Aoba will automatically discover and load your addon, register its modules and commands, and display it in the addon list.
Advertisement