Skip to content

Commit

Permalink
Federation plugin via ActivityPub based on bovine and mechanical-bull
Browse files Browse the repository at this point in the history
  • Loading branch information
pdxjohnny committed Oct 16, 2023
1 parent badf88f commit bf02645
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions scitt_emulator/federation_activitypub_bovine.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
from pathlib import Path
from typing import Optional

from scitt_emulator.federation import SCITTFederation


class SCITTFederationActivityPubBovine(SCITTFederation):
def __init__(
self,
config_path: Path,
service_parameters_path: Path,
storage_path: Optional[Path] = None,
):
super().__init__(config_path, service_parameters_path, storage_path)

def initialize_service(self):
pass

def created_entry(self, entry_id: str, receipt: bytes):
pass

0 comments on commit bf02645

Please sign in to comment.