067f3e0fc1
Signed-off-by: magic_rb <richard@brezak.sk>
12 lines
179 B
Python
12 lines
179 B
Python
from abc import abstractmethod
|
|
|
|
|
|
class RepoToken:
|
|
@abstractmethod
|
|
def get(self) -> str:
|
|
pass
|
|
|
|
@abstractmethod
|
|
def get_as_secret(self) -> str:
|
|
pass
|