You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
261 B
Java

package sh.adb.sensorCommunityAPI;
import java.sql.Connection;
import java.sql.SQLException;
public class DBHandler {
Connection connection;
DBHandler(DBConfig config) throws SQLException {
this.connection = config.getDbConnection();
}
}