2023-08-18 02:54:39 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate config_derive;
|
|
|
|
|
2023-03-20 12:16:20 +00:00
|
|
|
mod api;
|
2023-06-15 04:09:50 +00:00
|
|
|
pub use api::{
|
2023-08-25 00:52:27 +00:00
|
|
|
ChangeSettingRequest, CoreApp, CoreRequest, CoreResponse, CreateGameRequest,
|
|
|
|
HotseatPlayerRequest, PlayerInfoRequest,
|
2023-06-15 04:09:50 +00:00
|
|
|
};
|
2023-03-20 12:16:20 +00:00
|
|
|
|
2023-04-28 05:21:23 +00:00
|
|
|
mod board;
|
|
|
|
pub use board::*;
|
2023-07-20 03:57:19 +00:00
|
|
|
|
2023-08-18 02:54:39 +00:00
|
|
|
/*
|
2023-07-20 03:57:19 +00:00
|
|
|
mod config;
|
|
|
|
pub use config::*;
|
2023-08-18 02:54:39 +00:00
|
|
|
*/
|
2023-07-20 04:55:24 +00:00
|
|
|
|
|
|
|
mod database;
|
|
|
|
|
|
|
|
mod types;
|
|
|
|
pub use types::{BoardError, Color, Rank, Size};
|
2023-07-24 23:43:22 +00:00
|
|
|
|
2023-07-20 04:55:24 +00:00
|
|
|
pub mod ui;
|