From 9d0df49fb6e0d79082c3a4485f7595ef3338f8ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?fr=C3=A9d=C3=A9ric?= Date: Wed, 12 Feb 2025 13:04:14 +0100 Subject: [PATCH] add cache.py --- pwnagotchi/plugins/default/cache.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pwnagotchi/plugins/default/cache.py b/pwnagotchi/plugins/default/cache.py index 92feff12..0ab0368d 100644 --- a/pwnagotchi/plugins/default/cache.py +++ b/pwnagotchi/plugins/default/cache.py @@ -8,6 +8,8 @@ from pwnagotchi.ui.components import LabeledValue from pwnagotchi.ui.view import BLACK import pwnagotchi.ui.fonts as fonts +def get_cache(): + return None class Cache(plugins.Plugin): __author__ = "fmatray"