File: __main__.py

package info (click to toggle)
python-debianbts 4.1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 220 kB
  • sloc: python: 696; makefile: 51
file content (19 lines) | stat: -rw-r--r-- 361 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""Entry point for the (not yet implemented) cli."""


import logging

logger = logging.getLogger("debianbts")
logging.basicConfig(
    format="%(asctime)s %(levelname)s %(name)s %(message)s",
    level=logging.WARNING,
)


def main() -> None:
    """CLI entry point."""
    logger.warning("Not implemented yet, sorry!")


if __name__ == "__main__":
    main()