Skip to content

Commit 43c4772

Browse files
committed
Make some modules private
To better detect unused code.
1 parent 6c4cef7 commit 43c4772

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ use interactions::ErrorComment;
88
use std::fmt;
99
use tracing as log;
1010

11-
pub mod actions;
11+
mod actions;
1212
pub mod agenda;
1313
mod changelogs;
14-
pub mod config;
14+
mod config;
1515
pub mod db;
1616
pub mod github;
1717
pub mod handlers;
18-
pub mod interactions;
18+
mod interactions;
1919
pub mod jobs;
2020
pub mod notification_listing;
2121
pub mod payload;
22-
pub mod rfcbot;
22+
mod rfcbot;
2323
mod team_data;
2424
pub mod triage;
2525
mod utils;

0 commit comments

Comments
 (0)