Skip to main content

libobs_simple/
lib.rs

1#![cfg_attr(doc, feature(doc_cfg))]
2//! A simplified interface for recording and streaming with libobs
3
4pub mod error;
5pub mod output;
6pub mod sources;
7
8pub use error::ObsSimpleError;
9pub use libobs_wrapper as wrapper;