use crateGrid;
use crateError;
pub use crate*;
// algorithms: BinaryTree, Sidewinder, AldousBroder, HuntAndKill, RecursiveBacktracker
// maze_types: Orthogonal, Delta, Hex
// example json maze request, all fields are required:
// {
// "maze_type": "Orthogonal",
// "width": 12,
// "height": 12,
// "algorithm": "RecursiveBacktracker",
// "start": { "x": 0, "y": 0 },
// "goal": { "x": 11, "y": 11 }
// }