10 lines
204 B
Python
10 lines
204 B
Python
# SPDX-FileCopyrightText: 2022-present Heath Brown <heathd.brown@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
from .cli import pscanner
|
|
|
|
sys.exit(pscanner())
|