13 lines
207 B
Python
13 lines
207 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class ILevelController(ABC):
|
|
|
|
@abstractmethod
|
|
async def get_level_exam(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
async def get_level_utas(self):
|
|
pass
|