Files
pyShelf/config.py
2019-11-02 03:39:50 -04:00

12 lines
329 B
Python
Executable File

class Config:
"""Main System Configuration"""
def __init__(self):
self.book_path = "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