Bitbucket server, WIP

This commit is contained in:
Ori Kotek
2023-08-24 16:33:51 +03:00
parent 123741faf3
commit 5079daa4ad
8 changed files with 145 additions and 6 deletions

View File

@ -0,0 +1,12 @@
from abc import ABC, abstractmethod
class SecretProvider(ABC):
@abstractmethod
def get_secret(self, secret_name: str) -> str:
pass
@abstractmethod
def store_secret(self, secret_name: str, secret_value: str):
pass