agw:使用标准路由器(例如mux)将AWS APIGateway路由到lambda 源码
轻松路由AWS APIGateway请求 AGW将AWS lambda事件消息转换为标准的http.Request,可以轻松使用现有的http路由器和链接库。 借助AWS对golang包装器的本机支持,不再需要像nodejs或python这样的垫片。 简而言之,用法是 //your standard http handler func testhandler ( w http. ResponseWriter , r * http. Request ) { w . Header (). Add ( "test" , "test header" ) w .( * agw. LPR
用户评论