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