(self)
| 85 | return base64.b64encode(token_json_str.encode('utf-8')) |
| 86 | |
| 87 | def get_credentials_json(self): |
| 88 | with open(self.credentials_file) as json_file: |
| 89 | return json.load(json_file) |
| 90 | |
| 91 | @dataclass(frozen=True) |
| 92 | class QuickTunnelConfig(BaseConfig): |
no outgoing calls