2010-12-09 06:59:11 -06:00
|
|
|
# Authors:
|
|
|
|
# Rob Crittenden <rcritten@redhat.com>
|
|
|
|
# Jason Gerard DeRose <jderose@redhat.com>
|
2012-02-15 09:26:42 -06:00
|
|
|
# John Dennis <jdennis@redhat.com>
|
2010-12-09 06:59:11 -06:00
|
|
|
#
|
|
|
|
# Copyright (C) 2010 Red Hat
|
|
|
|
# see file 'COPYING' for use and warranty information
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
2010-02-24 12:29:23 -06:00
|
|
|
"""
|
2021-01-04 02:24:56 -06:00
|
|
|
WSGI application for IPA server.
|
2010-02-24 12:29:23 -06:00
|
|
|
"""
|
2021-01-04 02:24:56 -06:00
|
|
|
from ipaserver.wsgi import create_application
|
2018-04-05 02:21:16 -05:00
|
|
|
|
2021-01-04 02:24:56 -06:00
|
|
|
application = create_application()
|