1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! An unofficial port of AWS GameLift Server SDK for Rust.
//!
//! Official documentation for the SDK (C# version), can be found [here](https://docs.aws.amazon.com/gamelift/latest/developerguide/integration-server-sdk-csharp-ref.html).

pub mod api;
pub mod entity;
pub mod error;
mod http_client;
pub mod log_parameters;
mod mapper;
pub mod process_parameters;
pub mod protos;
pub mod server_state;
mod web_socket_listener;