9 lines
142 B
Python
9 lines
142 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class ITrainingController(ABC):
|
|
|
|
@abstractmethod
|
|
async def fetch_tips(self, data):
|
|
pass
|