#!/usr/bin/python3
# -*- coding: utf-8 -*-
#
# Univention UCS@school
"""UCS@school import tool."""
# SPDX-FileCopyrightText: 2016-2026 Univention GmbH
# SPDX-License-Identifier: AGPL-3.0-only

import sys

from ucsschool.importer.frontend.user_import_cmdline import UserImportCommandLine


def main():
    ui = UserImportCommandLine()
    return ui.main()


if __name__ == "__main__":
    sys.exit(main())
