File size: 200 Bytes
431d0b3
 
 
 
 
 
1
2
3
4
5
6
7
"""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__")