Moved to package / added pom.xml

This commit is contained in:
2021-05-22 15:51:33 +02:00
parent e0ed76543c
commit fa5fb6f26e
13 changed files with 59 additions and 33 deletions

View File

@ -0,0 +1,13 @@
package de.gnmyt.SQLToolkit.api;
import java.sql.SQLException;
/********************************
* @author Mathias Wagner
* Created 25.12.2020
*******************************/
@FunctionalInterface
public interface SQLConsumer<T> {
void accept(T t) throws SQLException;
}