debian-forge/osbuild/__main__.py
2022-09-12 13:32:51 +02:00

13 lines
269 B
Python
Executable file

"""OSBuild Main
This specifies the entrypoint of the osbuild module when run as executable. For
compatibility we will continue to run the CLI.
"""
import sys
from osbuild.main_cli import osbuild_cli as main
if __name__ == "__main__":
r = main()
sys.exit(r)