#!/usr/bin/env python3
import sys
from argparse import ArgumentParser
import os

root_path = os.path.dirname(os.path.realpath(__file__))
sys.path.insert(0, os.path.abspath(os.path.join(
    root_path, os.path.pardir, os.path.pardir)))
if __name__ == "__main__":
    from gammaloop import cli  # type: ignore
    cli()
