Brushed up the backend, added writing task 1 academic prompt gen and grading ENCOA-274
This commit is contained in:
10
ielts_be/services/abc/user.py
Normal file
10
ielts_be/services/abc/user.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from abc import ABC, abstractmethod
|
||||
|
||||
from ielts_be.dtos.user_batch import BatchUsersDTO
|
||||
|
||||
|
||||
class IUserService(ABC):
|
||||
|
||||
@abstractmethod
|
||||
async def batch_users(self, batch: BatchUsersDTO):
|
||||
pass
|
||||
Reference in New Issue
Block a user