Этот коммит содержится в:
Alexander UR6LKW
2025-05-31 19:11:26 +03:00
родитель a3b486071d
Коммит 07aa4efb2d
16 изменённых файлов: 280 добавлений и 155 удалений
+3 -6
Просмотреть файл
@@ -16,14 +16,12 @@ class IAppDispatcher(ABC):
Dispatcher interface for app
"""
@abstractmethod
def inject_packet(self, p: DMRPPacketData) -> None:
pass
def inject_packet(self, p: DMRPPacketData) -> None: ...
class IAppCallInterceptor(ABC):
@abstractmethod
def process_call_packet(self, call: Call, p: DMRPPacketData) -> None:
pass
def process_call_packet(self, call: Call, p: DMRPPacketData) -> None: ...
class App(ABC):
@@ -31,8 +29,7 @@ class App(ABC):
self.dispatcher: IAppDispatcher|None = None
@abstractmethod
def get_name(self) -> str:
pass
def get_name(self) -> str: ...
class AppKeeper: