mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-07-09 09:12:50 +03:00
10 lines
206 B
Java
10 lines
206 B
Java
package pro.gravit.launchserver.auth;
|
|
|
|
import java.sql.Connection;
|
|
import java.sql.SQLException;
|
|
|
|
public interface SQLSourceConfig {
|
|
Connection getConnection() throws SQLException;
|
|
|
|
void close();
|
|
}
|