19 lines
263 B
Python
19 lines
263 B
Python
#
|
|
# Copyright (c) 2024, Daily
|
|
#
|
|
# SPDX-License-Identifier: BSD 2-Clause License
|
|
#
|
|
|
|
from abc import ABC, abstractmethod
|
|
|
|
|
|
class BaseClock(ABC):
|
|
|
|
@abstractmethod
|
|
def get_time(self) -> int:
|
|
pass
|
|
|
|
@abstractmethod
|
|
def start(self):
|
|
pass
|