chrome_remote_interface_model/lib.rs
1#![cfg_attr(docsrs, feature(doc_cfg))]
2#![doc(html_root_url = "https://docs.rs/chrome-remote-interface-model/0.1.0-alpha.8")]
3//! Chrome DevTools Protocol message model.
4//!
5//! ## License
6//!
7//! Licensed under either of
8//! * Apache License, Version 2.0
9//! ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
10//! * MIT license
11//! ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
12//! at your option.
13//!
14//! ## Contribution
15//!
16//! Unless you explicitly state otherwise, any contribution intentionally submitted
17//! for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
18//! dual licensed as above, without any additional terms or conditions.!
19
20pub use model::*;
21
22mod model;