This repository has been archived on 2021-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
wikicookbook/wikicookbook.py

27 lines
901 B
Python
Raw Normal View History

#!/usr/bin/env python3
# Copyright (C) 2020-2021 Marcel Kapfer <opensource@mmk2410.org>
#
# This file is part of WikiCookBook.
#
# 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
# 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 <https://www.gnu.org/licenses/>.
"""Launcher for WikiCookBook"""
2020-04-30 10:02:06 +02:00
import sys
import WikiCookBook.wikicookbook
2020-09-09 23:44:27 +02:00
2020-04-30 10:02:06 +02:00
if __name__ == "__main__":
sys.exit(WikiCookBook.wikicookbook.main())