5 lines
142 B
Python
5 lines
142 B
Python
|
from os import path
|
||
|
|
||
|
application_directory = '{}/.elodie'.format(path.expanduser('~'))
|
||
|
hash_db = '{}/hash.json'.format(application_directory)
|