#!/usr/bin/env bash


if [[ ! $@ ]]; then
    python3 -m core.cli -h
else
    python3 -m core.cli $@
fi
