TAG

Golang

Golang lint - Different methods with Best Practices

Golang linting is a way to verify the go code to identify any kind of compilation issues, or performance improvements which can be done. We can perform linting …

By tuannguyen · 7 min read · GO

Golang return error and handle [Best Practices]

We can return errors in golanf func and then handle errors effectively using Casting Errors, Error wrapping mechanism, and Panic, defer and recover

By admin · 5 min read · GOLANG Solutions