mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-03 12:20:38 +08:00
13 lines
249 B
Python
13 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
|