You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
730 B
17 lines
730 B
import os
|
|
|
|
class Constants:
|
|
STORAGE = os.path.join(os.path.expanduser('~'), 'wf.json')
|
|
INBOX_ID = "13859f14-79ab-b758-7224-8dad0236f1e2"
|
|
TASKS_ID = "042d7e11-f613-856c-fb97-c0e6ee7ece05"
|
|
DIARY_ID = "01205285-f5b1-8026-0cfa-942f514e297e"
|
|
LIFE_IDS = {
|
|
"life": "f6f993a3-c696-c070-296e-6e5055fc834f",
|
|
"admin": "d3911123-138e-8eb3-f2ba-2495d8169660",
|
|
"art": "c2e9f4b2-59ce-d127-4da6-949e54ec1442",
|
|
"health": "4fc929b8-f04b-0dde-9a1a-9d889a13316d",
|
|
"mind": "c6db70a1-72e3-dbcc-f4b9-bfb10a1b4280",
|
|
"social": "60e3d667-eb40-3d26-cc3f-6b151cc5efa4",
|
|
"church": "5c68fad5-ad2b-8018-6535-b1462aed1277",
|
|
"work": "4c4970fc-9023-f861-1392-dbf88dd89187",
|
|
}
|
|
|