@@ -0,0 +1,10 @@
import json
from typing import Any
class Config:
def __init__(self) -> None:
with open("config.json", "r") as f:
self.params = json.load(f)
def get(self, param: str) -> Any:
return self.params[param]
The note is not visible to the blocked user.