#!/usr/bin/env python3 """Compatibility launcher: delegates to app.py.""" from app import main if __name__ == "__main__": main()