Skip to content

Commit

Permalink
feat(core): implement data upload api on transport implementations
Browse files Browse the repository at this point in the history
Implement methods to support upload of extracted data to the server on the existing transport implementations.
  • Loading branch information
kennedykori committed Aug 17, 2022
1 parent 8a27939 commit 5cff991
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/core/transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def fetch_data_sources(
"""
...

# @abstractmethod
@abstractmethod
def post_upload_chunk(
self,
upload_metadata: UploadMetadata,
Expand Down Expand Up @@ -98,7 +98,7 @@ def post_upload_chunk(
"""
...

# @abstractmethod
@abstractmethod
def post_upload_metadata(
self,
extract_metadata: ExtractMetadata,
Expand Down

0 comments on commit 5cff991

Please sign in to comment.