10 lines
252 B
Python
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
|