9 lines
308 B
Python
9 lines
308 B
Python
from .base import BaseProgressActionService
|
|
from chain_service.database.models.progress_chain import CommentProgressAction
|
|
|
|
|
|
class CommentProgressActionService(BaseProgressActionService):
|
|
|
|
async def process(self, progress_action: CommentProgressAction):
|
|
print("Comment service", progress_action)
|