suoto/hdl_checker

View on GitHub
hdl_checker/__main__.py

Summary

Maintainability
A
0 mins
Test Coverage
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

# This file is part of HDL Checker.
#
# Copyright (c) 2015 - 2019 suoto (Andre Souto)
#
# HDL Checker 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.
#
# HDL Checker 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 HDL Checker.  If not, see <http://www.gnu.org/licenses/>.
"hdl_checker module entry point"

import sys

from hdl_checker.server import main

sys.exit(main())