diff options
author | nea <romangraef@gmail.com> | 2022-07-26 11:42:48 +0200 |
---|---|---|
committer | nea <romangraef@gmail.com> | 2022-07-26 11:42:48 +0200 |
commit | 37218614c6d7f8a903b6532196dfa7d1e94a948f (patch) | |
tree | f3ab92298b23ac839eaa84b3af1c769adfa52fda /common/src/main/kotlin/moe/nea/notenoughupdates/NotEnoughUpdates.kt | |
parent | 372eec27e5e0c8ef796ed9e6bcdc68a10df84718 (diff) | |
download | firmament-37218614c6d7f8a903b6532196dfa7d1e94a948f.tar.gz firmament-37218614c6d7f8a903b6532196dfa7d1e94a948f.tar.bz2 firmament-37218614c6d7f8a903b6532196dfa7d1e94a948f.zip |
legacy tag parsing and transformation
Diffstat (limited to 'common/src/main/kotlin/moe/nea/notenoughupdates/NotEnoughUpdates.kt')
-rw-r--r-- | common/src/main/kotlin/moe/nea/notenoughupdates/NotEnoughUpdates.kt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/common/src/main/kotlin/moe/nea/notenoughupdates/NotEnoughUpdates.kt b/common/src/main/kotlin/moe/nea/notenoughupdates/NotEnoughUpdates.kt new file mode 100644 index 0000000..615d25e --- /dev/null +++ b/common/src/main/kotlin/moe/nea/notenoughupdates/NotEnoughUpdates.kt @@ -0,0 +1,23 @@ +package moe.nea.notenoughupdates + +import dev.architectury.registry.registries.Registries +import io.github.moulberry.repo.NEURepository +import java.nio.file.Path + +object NotEnoughUpdates { + val REGISTRIES by lazy { Registries.get(MOD_ID) } + + + const val MOD_ID = "notenoughupdates" + + val neuRepo = NEURepository.of(Path.of("NotEnoughUpdates-REPO")).also { + it.reload() + } + + + + + fun init() { + + } +} |