#!/usr/bin/env python3
"""
VaporRAM — development launcher.

Keeps `./vapor <command>` working from a git checkout. The real CLI lives in
vapor_ram/cli.py so that an installed package exposes the same entry point via
the `vapor` console script.
"""
import os
import sys

sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))

from vapor_ram.cli import main

if __name__ == "__main__":
    main()
