python.fast-api-converter/app/config_class.py

6 lines
144 B
Python

import yaml
class Config:
def __init__(self):
with open("app/config.yaml") as file:
self.config = yaml.safe_load(file)