Added version number to config, and title

This commit is contained in:
Mike
2019-11-10 01:54:03 -05:00
parent afeee201b6
commit 3676289509

View File

@@ -3,6 +3,8 @@ class Config:
def __init__(self):
self.book_path = "books/"
self.TITLE = "pyShelf E-Book Server"
self.VERSION = "0.1.0"
self.TITLE = self.TITLE + " ver" + self.VERSION
self.book_shelf = "data/shelf.json"
# self.catalogue_db = "data/catalogue.db"
self.catalogue_db = "../frontend/db.sqlite3"