# Settings

Published 2024-01-30

# Directly usable functions and values

from src.settings import CreateSettings, GetSettings

# Will create (or update) a new setting in the settings file.
CreateSettings(category, name, data) 

# Will get a specific setting from the settings file.
GetSettings(category, name, value=None) 

# Description

Provides an interface to read and write settings from the main JSON file.
Ideally all settings should be stored using this interface.