mirror of
https://github.com/QuasarApp/QuasarAppCI.git
synced 2025-04-28 22:54:33 +00:00
13 lines
295 B
Python
13 lines
295 B
Python
# This Python file uses the following encoding: utf-8
|
|
import json
|
|
from pathlib import Path
|
|
|
|
class SecretManager:
|
|
|
|
def __init__(self, jsFile):
|
|
contents = Path(jsFile).read_text()
|
|
self.jsfile = json.loads(contents)
|
|
|
|
def getValue(self, key):
|
|
return self.jsfile[key]
|