1
0
Fork 0
mirror of https://github.com/xHyroM/lighteco.git synced 2024-09-19 21:03:18 +02:00

feat(common): use configurate for config [wip]

not finished, just starting
This commit is contained in:
xHyroM 2023-08-04 16:43:55 +02:00
parent 7913bbe8e6
commit 871b320f6c
No known key found for this signature in database
GPG key ID: BE0423F386C436AA
3 changed files with 10 additions and 0 deletions

View file

@ -5,6 +5,8 @@ plugins {
dependencies {
api(project(":lighteco-api"))
implementation("org.spongepowered:configurate-yaml:4.0.0")
compileOnly("org.projectlombok:lombok:1.18.28")
annotationProcessor("org.projectlombok:lombok:1.18.28")

View file

@ -0,0 +1,4 @@
package dev.xhyrom.lighteco.common.config;
public class Config {
}

View file

@ -0,0 +1,4 @@
/**
* Common classes used by all platform-specific implementations.
*/
package dev.xhyrom.lighteco.common;