Implementing Interfaces With Golang

Learn how to leverage the power of interfaces

Yair Fernando
Better Programming
Published in
7 min readFeb 22, 2021

--

Interfaces are tools to define sets of actions and behaviors. They help objects to rely on abstractions and not on concrete implementations of other objects. We can compose different behaviors by grouping multiple interfaces.

--

--