Add basic artifact service

pull/1/head
bom 11 months ago
parent c15503b7a0
commit e6450b796f

@ -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"
Loading…
Cancel
Save