28 lines
609 B
Python
28 lines
609 B
Python
"""
|
|
Feel free to remove this if you don't need it/add your own custom settings and use them
|
|
"""
|
|
|
|
from my.core import Paths, PathIsh
|
|
|
|
class hypothesis:
|
|
# expects outputs from https://github.com/karlicoss/hypexport
|
|
# (it's just the standard Hypothes.is export format)
|
|
export_path: Paths = '/path/to/hypothesis/data'
|
|
|
|
class instapaper:
|
|
export_path: Paths = ''
|
|
|
|
class pocket:
|
|
export_path: Paths = ''
|
|
|
|
class github:
|
|
export_path: Paths = ''
|
|
|
|
class reddit:
|
|
export_path: Paths = ''
|
|
|
|
class endomondo:
|
|
export_path: Paths = ''
|
|
|
|
class exercise:
|
|
workout_log: PathIsh = '/some/path.org'
|