"""media-screenshot internal package.

Public surface used by the entry-point scripts. Anything else under this
package is implementation detail.
"""
from __future__ import annotations

from . import cli_args, scenes, template, trim
from .reader import do_read
from .recording import do_record
from .screenshot import do_screenshot
from .storyboard import do_storyboard

__all__ = [
    "cli_args",
    "do_read",
    "do_record",
    "do_screenshot",
    "do_storyboard",
    "scenes",
    "template",
    "trim",
]
