8 lines
206 B
Python
8 lines
206 B
Python
from sqlalchemy import Engine
|
|
|
|
|
|
class DatabaseInterfasesMixin:
|
|
"""Mixin for interfaces, that works with database"""
|
|
|
|
def __init__(self, engine: Engine) -> None:
|
|
self.engine: Engine = engine
|