Example of request routing for Golang on Lambda
- Write something specifically for Lambda
- Small collection of routes
- No need for caching routes since the lambda will not live long
- Applications should look like libraries, be thoroughly testable without http
- Julien Schmidt's HTTP Router which expects HTTP requests
- Golang's net/http ServeMux which also expects HTTP requests