2023-08-21 15:05:42 +02:00
|
|
|
"""
|
|
|
|
|
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.
|
2023-08-21 15:05:42 +02:00
|
|
|
"""
|
|
|
|
|
|
2023-08-31 22:30:05 +02:00
|
|
|
|
2023-08-21 15:05:42 +02:00
|
|
|
class Database:
|
2023-08-21 19:08:19 +02:00
|
|
|
def __init__(self, configuration, environment, log):
|
2023-08-21 15:05:42 +02:00
|
|
|
self._configuration = configuration
|
|
|
|
|
self._environment = environment
|
|
|
|
|
self._log = log
|