mirror of
https://github.com/th3r00t/pyShelf.git
synced 2026-04-28 01:59:35 -04:00
11 lines
300 B
Python
Executable File
11 lines
300 B
Python
Executable File
class Config:
|
|
"""Main System Configuration"""
|
|
def __init__(self):
|
|
self.book_path = "books/"
|
|
self.book_shelf = "data/shelf.json"
|
|
self.file_array = [
|
|
"data/catalogue.json",
|
|
"data/shelf.json",
|
|
"conf/settings.json"
|
|
]
|
|
self.auto_scan = True |