mirror of
https://github.com/Eyre-S/Coeur-Morny-Cono.git
synced 2025-05-11 07:40:41 +08:00
16 lines
334 B
Java
16 lines
334 B
Java
package cc.sukazyo.cono.morny.bot.event;
|
|
|
|
import cc.sukazyo.cono.morny.bot.api.EventListenerManager;
|
|
|
|
public class EventListeners {
|
|
|
|
public static final OnCommandExecute COMMANDS_LISTENER = new OnCommandExecute();
|
|
|
|
public static void registerAllListeners () {
|
|
EventListenerManager.addListener(
|
|
COMMANDS_LISTENER
|
|
);
|
|
}
|
|
|
|
}
|