#!/bin/sh
if [ -d "venv" ]; then
  . venv/bin/activate && python3 ubot.py
else
  python3 ubot.py
fi