mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 01:56:58 +03:00
14 lines
127 B
Python
14 lines
127 B
Python
"""Commands module."""
|
|
|
|
|
|
class Command:
|
|
...
|
|
|
|
|
|
class SaveRating(Command):
|
|
...
|
|
|
|
|
|
class DoSomethingElse(Command):
|
|
...
|