#!/usr/bin/env bash

if [[ ! $@ ]]; then
    python3 -m Stegasaurus/main.py -h
else
    python3 -m Stegasaurus/main.py $@
fi