Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 572 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 572 Bytes

Golang Lambda Router

Example of request routing for Golang on Lambda

Goals

  • 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

Prior Art