#!/bin/bash
# Simple wrapper script for Bolor CLI
# Usage: ./bolor-cli [command] [arguments]

# Pass all arguments to the Python module with warnings suppressed
PYTHONWARNINGS=ignore python3 -m bolor "$@"
