#!/usr/bin/env bash

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

