mirror of
https://github.com/plexusorg/ExampleModule.git
synced 2025-07-06 14:01:34 +00:00
18 lines
296 B
Java
18 lines
296 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()
|
|
{
|
|
}
|
|
}
|