#!/usr/bin/env python3
#
# sonar-tools
# Copyright (C) 2024-2026 Olivier Korach
# mailto:olivier.korach AT gmail DOT com
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
#

"""Main entry point for sonar-migration"""

from sonar import version

print(f'''
sonar-migration version {version.PACKAGE_VERSION}
(c) Olivier Korach 2024-2025
run: sonar-migration -u <SonarQubeURL> -t <SonarAdminUserToken>

See tools built-in -h help and https://github.com/okorach/sonar-tools/migration/README.md for more documentation
''')
