chore: template usage
Python Lint CI / ruff (push) Successful in 48s
Python Lint CI / ruff-format-check (push) Successful in 48s
Python Lint CI / ty (push) Successful in 48s
Python Test CI / coverage (push) Successful in 1m44s

This commit is contained in:
2026-06-15 10:27:21 +02:00
parent 093c553f6c
commit 11de7386f0
6 changed files with 15 additions and 12 deletions
+13
View File
@@ -0,0 +1,13 @@
import logging
import sys
from . import PKG_NAME, PKG_VERSION
from .logs import setup_logs
from .params import parse_parameters
def main() -> int:
params = parse_parameters(sys.argv[1:])
setup_logs(params)
logging.getLogger().info("%s %s", PKG_NAME, PKG_VERSION)
return 0