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

10 lines
252 B
Python

from abc import ABC, abstractmethod
from chain_service.database.models.progress_chain import BaseProgressAction
class BaseProgressActionService(ABC):
@abstractmethod
async def process(self, progress_action: BaseProgressAction):
pass