"""Convenience launcher so `python main.py` behaves like `python -m Theremini.main`.""" from runpy import run_module if __name__ == "__main__": run_module("Theremini.main", run_name="__main__")