mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-01-31 19:54:30 +03:00
14 lines
127 B
Python
14 lines
127 B
Python
"""Commands module."""
|
|
|
|
|
|
class Command:
|
|
...
|
|
|
|
|
|
class SaveRating(Command):
|
|
...
|
|
|
|
|
|
class DoSomethingElse(Command):
|
|
...
|