#!/bin/bash
cd /opt/yin_yang/ || exit 1
# check whether the activate script is readable, then activate the venv
[[ -r .venv/bin/activate ]] && source .venv/bin/activate
python3 -Om yin_yang "$@"
