Battlesnake Game Types

crates.io * docs

A crate to represent game types in the game of battlesnake

Usage

The most common usage is decoding and encoding wire representation data:

rust use battlesnake_game_types::wire_representation::Game; let g: Result<Game, _> = serde_json::from_slice(&body);

There are other useful tools that you can find better documented in the crate docs