From 6be1a445be9d75ec5d81176011af7dce66667737 Mon Sep 17 00:00:00 2001 From: alemi Date: Mon, 25 Mar 2024 05:08:29 +0100 Subject: [PATCH] chore: not all pub --- src/main.rs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/main.rs b/src/main.rs index 805b1457..76215d02 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,11 +1,12 @@ -pub mod model; -pub mod migrations; pub mod activitystream; pub mod activitypub; -pub mod server; -pub mod router; -pub mod errors; -pub mod auth; + +mod model; +mod migrations; +mod server; +mod router; +mod errors; +mod auth; mod dispatcher; use clap::{Parser, Subcommand};