mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2026-03-10 18:55:03 +00:00
Item Search V1
Still needs testing.
This commit is contained in:
11
Lambdas/Lists/ItemSearch/src/ItemSearchGET.java
Normal file
11
Lambdas/Lists/ItemSearch/src/ItemSearchGET.java
Normal file
@@ -0,0 +1,11 @@
|
||||
import com.amazonaws.services.lambda.runtime.Context;
|
||||
import com.amazonaws.services.lambda.runtime.RequestHandler;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
public class ItemSearchGET implements RequestHandler<Map<String,Object>, Object> {
|
||||
|
||||
public Object handleRequest(Map<String, Object> inputMap, Context unfilled) {
|
||||
return BasicHandler.handleRequest(inputMap, unfilled, ItemSearcher.class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user