Skip to main content

One post tagged with "Go"

View All Tags

Architecting AWS Lambda Functions in Golang: A Clean Approach

· 5 min read

Photo by Lance Anderson on Unsplash

Keeping code structure clean when using AWS Lambda can be a bit trickier, since there will be a bunch of entry points in our code. In fact, I usually spend some time finding how to structure my code before starting to code, to achieve “maintainable” and “easy to read” code. In this post, we’ll try out how to use Clean Architecture with AWS Lambda and Go.