python-dependency-injector/examples/miniapps/commands-and-handlers/application/commands.py

14 lines
127 B
Python
Raw Normal View History

2020-11-20 23:09:34 +00:00
"""Commands module."""
2020-11-20 23:16:29 +00:00
2020-11-20 23:09:34 +00:00
class Command:
...
class SaveRating(Command):
...
class DoSomethingElse(Command):
...