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()
Strategy interface for Strategy pattern
strategy:interface
python
class ${1:Strategy}:
def execute(self):
raise NotImplementedError()