7 lines
204 B
Python
7 lines
204 B
Python
|
|
from abc import ABC, abstractmethod
|
||
|
|
|
||
|
|
class ReadingRepository(ABC):
|
||
|
|
@abstractmethod
|
||
|
|
def insert_reading(self, device_id: str, pulse_count: int) -> None:
|
||
|
|
"""Persiste un relevé"""
|
||
|
|
...
|