mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-25 18:11:02 +03:00
9 lines
209 B
Java
9 lines
209 B
Java
|
package ru.gravit.launcher.modules;
|
||
|
|
||
|
import java.nio.file.Path;
|
||
|
|
||
|
public interface ModulesConfigManagerInterface {
|
||
|
Path getModuleConfig(String moduleName);
|
||
|
Path getModuleConfigDir(String moduleName);
|
||
|
}
|