aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/notenoughupdates/NotEnoughUpdates.kt
blob: 79b88190683e9b7b7aec300f6fadbee408b0b18b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package moe.nea.notenoughupdates

import io.github.moulberry.repo.NEURepository
import net.fabricmc.api.ModInitializer
import java.nio.file.Path

object NotEnoughUpdates : ModInitializer {
    val DATA_DIR = Path.of(".notenoughupdates")

    const val MOD_ID = "notenoughupdates"

    val neuRepo = NEURepository.of(Path.of("NotEnoughUpdates-REPO")).also {
        it.reload()
    }

    override fun onInitialize() {
    }
}