Files
pipecat/src/pipecat/clocks/base_clock.py
2024-09-12 00:31:48 -07:00

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