mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2025-12-16 18:48:48 +00:00
List deletion now working Integration tested independently. Still needs tests and user deletion should now use this.
13 lines
393 B
Java
13 lines
393 B
Java
import com.amazonaws.services.lambda.runtime.Context;
|
|
import com.amazonaws.services.lambda.runtime.RequestHandler;
|
|
|
|
import java.util.Map;
|
|
|
|
public class ListDELETE implements RequestHandler<Map<String,Object>, Object> {
|
|
|
|
public Object handleRequest(Map<String, Object> inputMap, Context unfilled) {
|
|
return BasicHandler.handleRequest(inputMap, unfilled, ListDeleter.class);
|
|
}
|
|
|
|
}
|