mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2025-07-11 23:38:03 +00:00
rename config in jar, config api, fixed null pointer in pubsub listener, use map allow muiltable port and hosts for the cluster
15 lines
321 B
Java
15 lines
321 B
Java
package com.imaginarycode.minecraft.redisbungee.api.config;
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
import java.nio.file.Path;
|
|
|
|
public interface ConfigLoader {
|
|
void loadConfig() throws IOException;
|
|
|
|
Path createConfigFile() throws IOException;
|
|
|
|
void handleOldConfig(Path path) throws IOException;
|
|
|
|
}
|