From 4eb1832c1a5b022d57a22fdfb256a31de08b8da5 Mon Sep 17 00:00:00 2001 From: Jomar Milan Date: Wed, 10 Jun 2026 23:57:12 -0700 Subject: Add crate docs and lint warns --- src/main.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/main.rs b/src/main.rs index e43a337..a581b2b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,15 @@ +//! Complementary web service for Tabletop Simulator. +//! +//! This service is based on Tabletop Ambulator, which allows hosts on Tabletop Simulator to grant +//! access to players to access and manage the contents of their hands from without using the game +//! screen by using a web browser. + +#![warn( + missing_docs, + missing_copy_implementations, + missing_debug_implementations +)] + mod play; mod session; mod template; -- cgit v1.2.3