words-game 0.1.0

Spelling game implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[macro_use]
extern crate lazy_static;

mod constants;
pub mod error;
pub mod models;

pub use models::*;
pub use error::*;

pub use constants::{BOARD_SIZE, BOARD, check_dictionary};