Files
encoach_backend/app/controllers/abc/training.py
2024-10-01 19:31:01 +01:00

13 lines
236 B
Python

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