Files
pyShelf/config.py
2019-10-31 22:14:34 -04:00

12 lines
342 B
Python
Executable File

class Config:
"""Main System Configuration"""
def __init__(self):
self.book_path = "/home/raelon/Books/"
self.book_shelf = "data/shelf.json"
self.catalogue_db = "data/catalogue.db"
self.file_array = [
self.book_shelf,
self.catalogue_db,
]
self.auto_scan = True