mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
13 lines
329 B
Python
13 lines
329 B
Python
from bauh.commons.config import read_config as read
|
|
from bauh.gems.appimage import CONFIG_FILE
|
|
|
|
|
|
def read_config(update_file: bool = False) -> dict:
|
|
default = {
|
|
'db_updater': {
|
|
'interval': 60 * 20,
|
|
'enabled': True
|
|
}
|
|
}
|
|
return read(CONFIG_FILE, default, update_file=update_file)
|