#!/usr/bin/env bash

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