Add basic artifact service

This commit is contained in:
bom 2023-08-03 12:15:37 +02:00
parent c15503b7a0
commit e6450b796f

View file

@ -0,0 +1,15 @@
from ..infrastructure import GitApi
class ArtifactDeploymentService:
def __init__(self, git_api: GitApi):
self.git_api = git_api
@classmethod
def prod(cls):
return cls(
GitApi(),
)
# def __get_base_artifact_release_url(self, base_url: str, organization: str, name: str) -> str:
# return f"{base_url}/{organization}/{name}/releases"