mirror of
https://github.com/plexusorg/ExampleModule.git
synced 2025-07-15 18:24:02 +00:00
17 lines
289 B
Java
17 lines
289 B
Java
package dev.plex;
|
|
|
|
import dev.plex.command.ExampleCommand;
|
|
import dev.plex.module.PlexModule;
|
|
|
|
public class ExampleModule extends PlexModule
|
|
{
|
|
@Override
|
|
public void enable() {
|
|
registerCommand(new ExampleCommand());
|
|
}
|
|
|
|
@Override
|
|
public void disable() {
|
|
|
|
}
|
|
}
|