-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: we need a launcher to start the plugin.
- Loading branch information
Showing
3 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
cache/src/main/java/me/qwqdev/library/cache/CacheLauncher.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
16
mongodb/src/main/java/me/qwqdev/library/mongodb/MongoLauncher.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { | ||
} |