Generify endpoint groups as IntelliJ Modules

This allows them to be built sperately decreasing JAR size and also creates a better structure for generic service functions and business logic.
This commit is contained in:
NMerz
2020-10-03 11:22:35 -04:00
parent c0c2d599f8
commit 69572b3a1f
12 changed files with 115 additions and 34 deletions

View File

@@ -0,0 +1,9 @@
import java.sql.SQLException;
import java.util.Map;
public class ItemGetter implements CallHandler{
@Override
public String conductAction(Map<String, Object> bodyMap, String cognitoID) throws SQLException {
return null;
}
}