A crate to represent game types in the game of battlesnake
The most common usage is decoding and encoding wire representation data:
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