Skip to content

Commit

Permalink
build: we need a launcher to start the plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
QwQ-dev committed Dec 20, 2024
1 parent ac33bda commit c63c3c0
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @author NaerQAQ
* @version 1.0
* @since 2024 /1/7
* @since 2024/1/7
*/
public interface CustomAnnotationProcessor {
/**
Expand Down
16 changes: 16 additions & 0 deletions cache/src/main/java/me/qwqdev/library/cache/CacheLauncher.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package me.qwqdev.library.cache;

import io.fairyproject.FairyLaunch;
import io.fairyproject.container.InjectableComponent;
import io.fairyproject.plugin.Plugin;

/**
* The type Cache launcher.
*
* @author qwq-dev
* @since 2024-12-20 18:00
*/
@FairyLaunch
@InjectableComponent
public class CacheLauncher extends Plugin {
}
16 changes: 16 additions & 0 deletions mongodb/src/main/java/me/qwqdev/library/mongodb/MongoLauncher.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package me.qwqdev.library.mongodb;

import io.fairyproject.FairyLaunch;
import io.fairyproject.container.InjectableComponent;
import io.fairyproject.plugin.Plugin;

/**
* The type Mongo launcher.
*
* @author qwq-dev
* @since 2024-12-20 18:01
*/
@FairyLaunch
@InjectableComponent
public class MongoLauncher extends Plugin {
}

0 comments on commit c63c3c0

Please sign in to comment.