mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
7 lines
144 B
Python
7 lines
144 B
Python
from pathlib import Path
|
|
|
|
from fpakman import __app_name__
|
|
|
|
HOME_PATH = Path.home()
|
|
CACHE_PATH = '{}/.cache/{}'.format(HOME_PATH, __app_name__)
|