Initial Commit
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package me.neurodock.example.plugin;
|
||||
|
||||
import me.neurodock.plugin.Plugin;
|
||||
import me.neurodock.plugin.PluginMetadata;
|
||||
import me.neurodock.plugin.annotations.PluginEntryPoint;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@PluginEntryPoint
|
||||
public class TestPlugin extends Plugin {
|
||||
@Override
|
||||
public @NotNull PluginMetadata getMetadata() {
|
||||
return new PluginMetadata() {
|
||||
@Override
|
||||
public @NotNull String getName() {
|
||||
return "test";
|
||||
}
|
||||
|
||||
@Override
|
||||
public @NotNull String getVersion() {
|
||||
return "0.0.1";
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"entryPoint": "me.neurodock.example.plugin",
|
||||
"name": "test"
|
||||
}
|
||||
Reference in New Issue
Block a user