#!/usr/bin/env bash

if [[ ! $@ ]]; then
    python3 -m dycow -h
else
    python3 -m dycow $@
fi
