Python Strategy Interface

Descripción

Strategy interface for Strategy pattern


File Template: ✅


Prefix

strategy:interface


Scopes

python


Snippet de código

class ${1:Strategy}:
	def execute(self):
		raise NotImplementedError()