buildbot-nix/buildbot_nix/binary_cache.py

13 lines
229 B
Python
Raw Normal View History

from dataclasses import dataclass
@dataclass
class S3BinaryCacheConfig:
region: str
bucket: str
endpoint: str
profile: str
class LocalSigner:
def __init__(self, keyfile: str):
self.keyfile = keyfile