#!/usr/bin/python3 -I
# SPDX-License-Identifier: GPL-3.0-or-later

# Copyright 2023 igo95862

# This file is part of bubblejail.
# bubblejail 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.
# bubblejail 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 bubblejail.  If not, see <https://www.gnu.org/licenses/>.


if __name__ == "__main__":
    from bubblejail.bubblejail_utils import BubblejailSettings

    BubblejailSettings.HELPER_PATH_STR = "/usr/lib/bubblejail/bubblejail-helper"
    BubblejailSettings.SHARE_PATH_STR = "/usr/share"
    BubblejailSettings.SYSCONF_PATH_STR = "/etc"
    BubblejailSettings.VERSION = "Alpine 0.8.3"

    from bubblejail.bubblejail_helper import bubblejail_helper_main

    bubblejail_helper_main()
