#
# Copyright (c) 2024–2025, Daily
#
# SPDX-License-Identifier: BSD 2-Clause License
#
from abc import ABC, abstractmethod
[docs]
class BaseClock(ABC):
[docs]
@abstractmethod
def get_time(self) -> int:
pass
[docs]
@abstractmethod
def start(self):
pass