skyhook 0.5.51

Application server for Ordinary
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]
#![warn(clippy::all, clippy::pedantic)]
#![allow(
    clippy::missing_errors_doc,
    clippy::cast_precision_loss,
    clippy::match_wildcard_for_single_variants
)]

/// Client components for facilitating interaction with [`App`]
#[cfg(feature = "client")]
pub mod client;

/// Server components for setting up an [`App`]
#[cfg(feature = "server")]
pub mod server;