Source code for univention.radius

#
# Univention RADIUS
#
# SPDX-FileCopyrightText: 2012-2025 Univention GmbH
# SPDX-License-Identifier: AGPL-3.0-only


[docs] def get_NetworkAccess(): try: # Use the extended UCS@school network access check if installed from univention.radius.school_networkaccess import SchoolNetworkAccess return SchoolNetworkAccess except ImportError: from univention.radius.networkaccess import NetworkAccess return NetworkAccess