We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7a82b1 commit c35e907Copy full SHA for c35e907
src/ping.rs renamed to src/checks.rs
src/lib.rs
@@ -8,7 +8,11 @@ pub const DAEMON_LOG_ERR: &str = "/var/log/netpulse.err";
8
pub const DAEMON_LOG_INF: &str = "/var/log/netpulse.log";
9
pub const DAEMON_USER: &str = "netpulse";
10
11
+/// where the actual checks are made
12
+pub mod checks;
13
+/// error types
14
pub mod errors;
-pub mod ping;
15
+/// check records that are put in the store, and working with them
16
pub mod records;
17
+/// the store contains all info, is written and loaded to and from the disk
18
pub mod store;
0 commit comments