from abc import ABC, abstractmethod class ITrainingController(ABC): @abstractmethod async def fetch_tips(self, data): pass @abstractmethod async def get_training_content(self, data): pass