AWS Lambda is an easy-to-use serverless offering that enables developers to quickly deploy code without worrying about maintenance, orchestration, scaling, etc. It’s simple to get started and its free tier is generous! Golang project structure GO does not have a recommended project structure. In fact, keeping a project structure flat is preferrable for small apps: 1project/ 2├── go.mod 3├── go.sum 4├── user.go 5└── main.goMy personal preference is to use the flat str...