#!/usr/bin/python3
"""CLI entry point for debian-todo."""

from debian_todo import main

if __name__ == "__main__":
    main()
