mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-25 02:53:56 +03:00
13 lines
126 B
Python
13 lines
126 B
Python
|
"""Commands module."""
|
||
|
|
||
|
class Command:
|
||
|
...
|
||
|
|
||
|
|
||
|
class SaveRating(Command):
|
||
|
...
|
||
|
|
||
|
|
||
|
class DoSomethingElse(Command):
|
||
|
...
|