mmids_core/endpoints/mod.rs
1//! Endpoints are components that handle interactions with external systems. The external
2//! systems may be other programs (managed via shell/process calls) or networked systems (such as
3//! the logic for handling inbound or outbound RTMP connections). Endpoints are usually idle until
4//! invoked by workflow steps.
5
6pub mod ffmpeg;
7pub mod rtmp_server;