#!/usr/bin/env python3 # -*- coding: utf-8 -*- from typing import Self, Any from abc import ABC, abstractmethod from Interfaces.Owners.DatabasesInterface import DatabasesInterface class DatabasesManagerInterface(ABC): @abstractmethod def get(self:Self, key:str) -> type[DatabasesInterface]|None:pass @abstractmethod def add(self:Self, inputs:Any|None, overwrite:bool = False) -> None:pass @abstractmethod def close(self:Self) -> None:pass