1
0
mirror of https://github.com/tmrts/go-patterns.git synced 2024-12-02 01:36:02 +03:00
go-patterns/creational/abstract-factory.md

7 lines
317 B
Markdown

# Abstract Factory Pattern
The [abstract factory design pattern](https://en.wikipedia.org/wiki/Abstract_factory_pattern) provides an interface for creating families of releated objects
# Implementation and Example
An example with implementation and usage can be found in [abstract_factory.go](abstract_factory.go).