summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorA Farzat <a@farzat.xyz>2026-06-21 11:44:26 +0300
committerA Farzat <a@farzat.xyz>2026-06-21 11:44:26 +0300
commit84b497fe446511ce832afcea30683b8e070bed10 (patch)
tree68843c35b085218b8080af3f7afce001ecb3b84c /src/main.rs
parentb012c1e6037ba3f89b9cdbd599f9d2650c1ad691 (diff)
downloadrepo2markdown-84b497fe446511ce832afcea30683b8e070bed10.tar.gz
repo2markdown-84b497fe446511ce832afcea30683b8e070bed10.zip
Add module docs to binaries
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 3a89188..8cbbadb 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,3 +1,8 @@
+//! Entry point for the main `repo2markdown` binary.
+//!
+//! This binary parses command-line arguments, connects stdin/stdout, and delegates the actual
+//! rendering pipeline to [`run::run`].
+
mod cli;
mod run;