#!/usr/bin/env bash

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