From 4b01c90bf01f4b9ba51cb3e4ab8c3336d8d050c4 Mon Sep 17 00:00:00 2001 From: tretrauit Date: Sat, 17 Jun 2023 22:14:37 +0700 Subject: [PATCH] feat: add telemetry functions --- vollerei/abc/patcher.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/vollerei/abc/patcher.py b/vollerei/abc/patcher.py index 72de8a2..cd680d1 100644 --- a/vollerei/abc/patcher.py +++ b/vollerei/abc/patcher.py @@ -34,3 +34,11 @@ class PatcherABC(ABC): unpatching fails then it'll raise `UnpatchingFailedError`. """ pass + + @abstractmethod + def check_telemetry(self): + pass + + @abstractmethod + def block_telemetry(self): + pass