mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 00:04:15 +02:00
16 lines
340 B
Python
16 lines
340 B
Python
from bauh.commons.config import read_config as read
|
|
from bauh.gems.web import CONFIG_FILE
|
|
|
|
|
|
def read_config(update_file: bool = False) -> dict:
|
|
default_config = {
|
|
'environment': {
|
|
'system': False,
|
|
'electron': {'version': None}
|
|
}
|
|
}
|
|
|
|
return read(CONFIG_FILE, default_config, update_file)
|
|
|
|
|