mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2026-03-11 11:05:05 +00:00
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:
9
Lambdas/Lists/Item/src/ItemGetter.java
Normal file
9
Lambdas/Lists/Item/src/ItemGetter.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user