screeps-api 0.6.0

Fully typed and tested wrapper over the Screeps Game's HTTP API
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Handling of socket connections to screeps using ws-rs as a backend.
mod channel;
pub mod commands;
mod connecting;
mod parsing;
mod types;

pub use self::{
    channel::Channel,
    connecting::{default_url, transform_url},
    parsing::*,
    types::*,
};