13 lines
126 B
Python
13 lines
126 B
Python
|
"""Commands module."""
|
||
|
|
||
|
class Command:
|
||
|
...
|
||
|
|
||
|
|
||
|
class SaveRating(Command):
|
||
|
...
|
||
|
|
||
|
|
||
|
class DoSomethingElse(Command):
|
||
|
...
|