Use stdlib for business logic
Business logic must be separated from state and mutable logic. Golang's stdlib should be the only library you use for writing business logic. The go standard library is well tested and future-proof.
Business logic must be separated from state and mutable logic. Golang's stdlib should be the only library you use for writing business logic. The go standard library is well tested and future-proof.