16 lines
418 B
Python
16 lines
418 B
Python
from flask import Flask
|
|
import logging
|
|
|
|
from .model import Service
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class LenticularServices(dict[str, Service]):
|
|
|
|
def init_app(self, app: Flask) -> None:
|
|
for service_name, service_config in app.config['LENTICULAR_CLOUD_SERVICES'].items():
|
|
self[service_name] = Service.from_config(service_name, service_config)
|
|
|
|
|
|
lenticular_services = LenticularServices() |