mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 02:45:18 +00:00
12 lines
249 B
Python
12 lines
249 B
Python
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
|