#!/usr/bin/env python3
"""Entrypoint of pseudo-package for all the code used in the workflow."""

from workflow_glue import cli

if __name__ == "__main__":
    cli()
