1 2 3 4 5 6 7 8 9 10 11 12 13
// Copyright (C) 2025 Vince Vasta // SPDX-License-Identifier: Apache-2.0 //! Freezeout Poker server. #![warn(clippy::all, rust_2018_idioms, missing_docs)] pub mod db; pub mod server; pub use server::{Config, run}; pub mod table; pub mod tables_pool;