OZI-Project/OZI

View on GitHub
ozi/new/__main__.py

Summary

Maintainability
A
0 mins
Test Coverage
# ozi/new/__main__.py
# Part of the OZI Project, under the Apache License v2.0 with LLVM Exceptions.
# See LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
"""ozi-new entrypoint script."""
from ozi_core.new import main

if __name__ == '__main__':
    main()