Move CLI to own package
This commit is contained in:
parent
d23f364f71
commit
7a1226b232
12 changed files with 273 additions and 179 deletions
|
|
@ -4,6 +4,10 @@ from pathlib import Path
|
|||
|
||||
from platformdirs import user_data_dir
|
||||
|
||||
DATA_DIR: str = user_data_dir(appname="FeedVault", appauthor="TheLovinator", roaming=True)
|
||||
DATA_DIR: str = user_data_dir(
|
||||
appname="FeedVault",
|
||||
appauthor="TheLovinator",
|
||||
roaming=True,
|
||||
)
|
||||
DB_PATH: Path = Path(DATA_DIR) / "reader.sqlite"
|
||||
MEDIA_ROOT: Path = Path(DATA_DIR) / "uploads"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue