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