|
|
|
|
|
by ljm
634 days ago
|
|
Go these days has had a good few stdlib improvements that reduce your reliance on third party libraries even further. The http router now handles path parameters and methods, so you might just pull in a library to run a middleware stack. There is structured logging in the stdlib, which works with the existing log package for an easy transition. The thing I’ve struggled with is structuring a project nicely, what with the way modules work, especially for services that aren’t exactly ‘micro’, and especially when the module and workspace system is still pretty unintuitive. |
|