6 lines
144 B
Python
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)
|