nopaque/app/services/__init__.py

14 lines
283 B
Python
Raw Normal View History

2019-07-19 11:28:17 +00:00
from flask import Blueprint
import os
import yaml
2019-07-19 11:28:17 +00:00
services_file = os.path.join(
os.path.dirname(os.path.abspath(__file__)), 'services.yml')
with open(services_file, 'r') as f:
SERVICES = yaml.safe_load(f)
2021-02-19 12:00:52 +00:00
bp = Blueprint('services', __name__)
from . import routes # noqa