summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorJomar Milan <jomarm@jomarm.com>2026-06-10 23:57:12 -0700
committerJomar Milan <jomarm@jomarm.com>2026-06-10 23:58:02 -0700
commit4eb1832c1a5b022d57a22fdfb256a31de08b8da5 (patch)
treeb1453487006b6676d1be2a71f6358f8c9d2d4438 /src/main.rs
parente6b6b40cca60437861cd500741c6cd42c9d30c5c (diff)
Add crate docs and lint warns
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs12
1 files changed, 12 insertions, 0 deletions
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;