Skip to main content

myxine_core/
lib.rs

1//! This package is the heart of the [Myxine GUI
2//! server](https://github.com/kwf/myxine). It does not contain any code
3//! for directly implementing the web server or browser-side JavaScript.
4//!
5//! You probably only need to depend on this library if you are yourself
6//! creating an alternative to the Myxine server: to build clients to the Myxine
7//! server, see the documentation for its various client libraries.
8
9mod page;
10mod session;
11
12pub use page::subscription::{Event, Subscription};
13pub use page::{content::Command, Page, RefreshMode, Response};
14pub use session::{Config, Session};