Files
encoach_backend/app/controllers/abc/training.py
Carlos Mesquita 3cf9fa5cba Async release
2024-07-23 08:40:35 +01:00

9 lines
142 B
Python

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