linspector/linspector/database.py

12 lines
343 B
Python
Raw Normal View History

"""
This file is part of Linspector (https://linspector.org/)
2023-08-22 02:53:50 +02:00
Copyright (c) 2013-2023 Johannes Findeisen <you@hanez.org>. All Rights Reserved.
See LICENSE.
"""
class Database:
def __init__(self, configuration, environment, log):
self._configuration = configuration
self._environment = environment
self._log = log