mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-03-20 00:05:23 +03:00
6 lines
122 B
Java
6 lines
122 B
Java
package ru.gravit.launchserver;
|
|
|
|
@FunctionalInterface
|
|
public interface Reloadable {
|
|
void reload() throws Exception;
|
|
}
|