fix template miss

This commit is contained in:
Waylon Walker 2023-05-21 13:17:48 -05:00
parent bec30fb592
commit 8080d7101e
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4

View file

@ -1,9 +1,10 @@
# SPDX-FileCopyrightText: 2023-present Waylon S. Walker <waylon@waylonwalker.com>
#
# SPDX-License-Identifier: MIT
import sys
if __name__ == '__main__':
from .cli import {{python_package}}
import typer
sys.exit({{python_package}}())
from .cli.app import main
if __name__ == "__main__":
typer.run(main)