Files
tout-doux/app/__main__.py
T
klemek f48f4353a2
Python Test CI / coverage (push) Has been cancelled
Python Lint CI / ruff (push) Successful in 47s
Python Lint CI / ruff-format-check (push) Successful in 47s
Python Lint CI / ty (push) Successful in 47s
chore: template
2026-06-29 21:15:10 +02:00

14 lines
291 B
Python

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