summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
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;