Skip to content

Instantly share code, notes, and snippets.

View jacobs902207's full-sized avatar

jacobs902207 jacobs902207

  • kakao
  • Gyeonggi, South Korea
View GitHub Profile
@jacobs902207
jacobs902207 / builder_python.py
Created January 13, 2018 04:25 — forked from diofeher/builder_python.py
Builder Pattern implemented in Python
#!/usr/bin/python
# -*- coding : utf-8 -*-
"""
@author: Diogenes Augusto Fernandes Herminio <[email protected]>
"""
# Director
class Director(object):
def __init__(self):
self.builder = None