mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2026-03-11 02:55:04 +00:00
Allow for the retrieval of userIDs from email (or just generally). This may need the apigateway passthrough info modified for privacy protection
12 lines
388 B
Java
12 lines
388 B
Java
import com.amazonaws.services.lambda.runtime.Context;
|
|
import com.amazonaws.services.lambda.runtime.RequestHandler;
|
|
|
|
import java.util.Map;
|
|
|
|
public class UserGET implements RequestHandler<Map<String,Object>, Object> {
|
|
|
|
public Object handleRequest(Map<String, Object> inputMap, Context unfilled) {
|
|
return BasicHandler.handleRequest(inputMap, unfilled, UserGetter.class);
|
|
}
|
|
}
|