Using interfaces in Go the right way
Interface programming constructs describe the behavior of objects without specifying underlying implementation details. Interfaces in Go are powerful and can be satisfied implicitly, meaning that types can implement an interface simply by declaring the methods defined in the interface. This article .. read more










