mirror of
https://github.com/th3r00t/pyShelf.git
synced 2026-04-28 01:59:35 -04:00
12 lines
295 B
Python
Vendored
12 lines
295 B
Python
Vendored
"""pyShelf's frontend database hooks."""
|
|
from ....src.backend.lib.storage import Storage
|
|
|
|
|
|
class BookInterface:
|
|
"""Access point for book database."""
|
|
|
|
def __init(self, config):
|
|
"""Initialize class variables."""
|
|
self.config = config
|
|
self.db = Storage(self.config)
|