In this golang programming tutorial I will be convering go interfaces. Interfaces in golang are a way to group structs that have related behaviour. Structs can implement an interface and you can use the interface name to access related methods or behaviour of all structs that implement that interface.
#go #golang