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

14 lines
127 B
Python
Raw Normal View History

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