1
0
mirror of https://github.com/tmrts/go-patterns.git synced 2024-11-26 06:56:04 +03:00
go-patterns/creational/abstract-factory.md

7 lines
317 B
Markdown
Raw Normal View History

# 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).