Implement search
This commit is contained in:
19
lib/Config.py
Normal file
19
lib/Config.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from typing import TypedDict
|
||||
|
||||
|
||||
class EncryptionConfig(TypedDict):
|
||||
ENCRYPTION_KEY_VALID: str
|
||||
ENCRYPTION_KEY: str
|
||||
|
||||
|
||||
class DatabaseConfig(TypedDict):
|
||||
DB_HOST: str
|
||||
DB_USER: str
|
||||
DB_PASS: str
|
||||
DB_NAME: str
|
||||
DB_PORT: str
|
||||
|
||||
|
||||
class Config(TypedDict):
|
||||
database: DatabaseConfig
|
||||
pyqcrm: EncryptionConfig
|
||||
Reference in New Issue
Block a user