From a73f0b0135f484079f88b9a242bf3b3c5bb1dda4 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Sun, 18 Oct 2020 12:28:12 +0200 Subject: Added a session-storag. This is in an attempt to build away some magic functionality that might otherwise be hard to understand/maintain over a long period of time. Using this in profiles/desktop.py as a test. --- archinstall/__init__.py | 1 + archinstall/lib/storage.py | 1 + 2 files changed, 2 insertions(+) create mode 100644 archinstall/lib/storage.py (limited to 'archinstall') diff --git a/archinstall/__init__.py b/archinstall/__init__.py index ad4220f2..a05b8e95 100644 --- a/archinstall/__init__.py +++ b/archinstall/__init__.py @@ -11,3 +11,4 @@ from .lib.locale_helpers import * from .lib.services import * from .lib.packages import * from .lib.output import * +from .lib.storage import * \ No newline at end of file diff --git a/archinstall/lib/storage.py b/archinstall/lib/storage.py new file mode 100644 index 00000000..2c621f83 --- /dev/null +++ b/archinstall/lib/storage.py @@ -0,0 +1 @@ +storage = {} \ No newline at end of file -- cgit v1.2.3-54-g00ecf