Design Pattern: Template Method Pattern in Go
Using Template Method Pattern we can write part of an algorithm in our implementation and the rest of it is executed in abstraction. So our implementation will replace/rewrite only some steps of the full process. This article demonstrates Template Method pattern implementations in Golang.