1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
// Copyright (c) 2020 Tianyi Shi
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

//! # sudoku-tui
//!
//! Play sudoku on the command line.
//!
//! For for information, please go to [the GitHub repository](https://github.com/TianyiShi2001/sudoku-tui)

pub mod board;
pub mod game;
pub mod sudoku;