fix template miss
This commit is contained in:
parent
bec30fb592
commit
8080d7101e
1 changed files with 5 additions and 4 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue