mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2025-12-18 03:28:46 +00:00
Build out infrastructure for get requests (along with the first couple). This includes changing the request engine from Volley to OKHTTP due to issues get Volley's callbacks to call back.
12 lines
387 B
Java
12 lines
387 B
Java
import java.util.Map;
|
|
|
|
import com.amazonaws.services.lambda.runtime.Context;
|
|
import com.amazonaws.services.lambda.runtime.RequestHandler;
|
|
|
|
public class ListPOST implements RequestHandler<Map<String,Object>, Object>{
|
|
|
|
public Object handleRequest(Map<String, Object> inputMap, Context unfilled) {
|
|
return BasicHandler.handleRequest(inputMap, unfilled, ListAdder.class);
|
|
}
|
|
}
|