forked from Github-Mirrors/canaille
11 lines
234 B
Python
11 lines
234 B
Python
from canaille.backends import Backend
|
|
from canaille.oidc.installation import install as install_oidc
|
|
|
|
|
|
class InstallationException(Exception):
|
|
pass
|
|
|
|
|
|
def install(config):
|
|
install_oidc(config)
|
|
Backend.get().install(config)
|