Skip to content

Commit

Permalink
New DatabaseConnector class
Browse files Browse the repository at this point in the history
  • Loading branch information
torrua committed Jan 25, 2024
1 parent 7e07cf0 commit 4ea749a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app/database_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,11 @@ def import_data(self, data: Storage):
Parameters:
data (Storage): The Storage object to import.
"""


class DatabaseConnector(ABC):

@property
@abstractmethod
def table_order(self) -> dict:
pass

0 comments on commit 4ea749a

Please sign in to comment.