11 lines
208 B
Python
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
|