Package group.worldstandard.pudel.api


package group.worldstandard.pudel.api
Core API for the Pudel Plugin Development Kit (PDK).

This package provides the fundamental interfaces and classes that plugins use to interact with the Pudel Discord bot runtime. The main entry point for plugins is the PluginContext interface, which provides access to all bot services and Discord API functionality.

Key Components:

Getting Started:

@Plugin(name = "MyPlugin", version = "1.0.0", author = "Author")
public class MyPlugin {

    @OnEnable
    public void onEnable(PluginContext context) {
        context.log("info", "Plugin enabled!");
    }
}
Since:
2.3.0