aws_gamelift_server_sdk_rs/
lib.rs

1//! An unofficial port of AWS GameLift Server SDK for Rust.
2//!
3//! 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).
4
5pub mod api;
6pub mod entity;
7pub mod error;
8mod http_client;
9pub mod log_parameters;
10mod mapper;
11pub mod process_parameters;
12pub mod protos;
13pub mod server_state;
14mod web_socket_listener;