lenticular_cloud2/import.py

10 lines
193 B
Python
Raw Normal View History

2020-05-30 21:43:55 +00:00
import logging
from lenticular_cloud.app import oidc_provider_init_app
name = 'oidc_provider'
app = oidc_provider_init_app(name)
logging.basicConfig(level=logging.DEBUG)
with app.context():