Files
encoach_backend/app/services/abc/user.py
2024-10-01 19:31:01 +01:00

11 lines
208 B
Python

from abc import ABC, abstractmethod
from app.dtos.user_batch import BatchUsersDTO
class IUserService(ABC):
@abstractmethod
async def fetch_tips(self, batch: BatchUsersDTO):
pass