mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-08 01:34:15 +02:00
6 lines
148 B
Python
6 lines
148 B
Python
from pathlib import Path
|
|
|
|
HOME_PATH = Path.home()
|
|
CACHE_PATH = '{}/.cache/bauh'.format(HOME_PATH)
|
|
CONFIG_PATH = '{}/.config/bauh'.format(HOME_PATH)
|