chain-service/chain_service/services/progress_action/comment_progress_action.py
2024-02-28 18:09:12 +07:00

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)