#!/usr/bin/env python3
"""
Entry point for CLI tool
"""
from cli import cli

if __name__ == "__main__":
    cli()
