#!/usr/bin/env python3

"""Compatibility CLI wrapper for the MW rendering workflow.

This script remains in examples/ for user familiarity, but the implementation
now lives in the installable package module:
    gxrender.workflows.render_mw
"""

from gxrender.workflows.render_mw import main


if __name__ == "__main__":
    main()
