mirror of
https://github.com/Geniusay/ChopperBot.git
synced 2026-05-20 09:26:49 +08:00
12 lines
161 B
Java
12 lines
161 B
Java
package org.example.plugin;
|
|
|
|
/**
|
|
* @author Genius
|
|
* @date 2023/08/31 02:12
|
|
**/
|
|
@FunctionalInterface
|
|
public interface PluginFailAction {
|
|
|
|
void action();
|
|
}
|