mirror of
https://github.com/rjNemo/design-patterns
synced 2026-06-06 02:26:40 +00:00
4 lines
217 B
Python
4 lines
217 B
Python
"""
|
||
Template Method is a behavioral design pattern that allows you to defines a skeleton of an algorithm in a base class and
|
||
let subclasses override the steps without changing the overall algorithm’s structure.
|
||
"""
|