Paper/paper-test-plugin/src/main/java/io/papermc/testplugin/TestPluginBootstrap.java

14 lines
341 B
Java
Raw Permalink Normal View History

2023-02-19 15:57:10 +01:00
package io.papermc.testplugin;
2023-06-08 15:42:13 +02:00
import io.papermc.paper.plugin.bootstrap.BootstrapContext;
2023-02-19 15:57:10 +01:00
import io.papermc.paper.plugin.bootstrap.PluginBootstrap;
import org.jetbrains.annotations.NotNull;
public class TestPluginBootstrap implements PluginBootstrap {
@Override
2023-06-08 15:42:13 +02:00
public void bootstrap(@NotNull BootstrapContext context) {
2023-02-19 15:57:10 +01:00
}
}