wip: initial

This commit is contained in:
Yannik Schmidt
2024-02-21 06:52:44 +01:00
commit 638ebce29b
11 changed files with 193 additions and 0 deletions

15
localconfig.py Normal file
View File

@@ -0,0 +1,15 @@
class LocalConfig:
def __init__(self):
self.remote_user = None
self.remote_pass = None
self.skip_registry_ask = None
def save_to_fs(self):
'''Save the current config to the local file system'''
pass
def load_from_fs(self):
'''Load a config file from the filesystem'''
pass