aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-03-29 13:31:02 +0000
committerFuwn <[email protected]>2021-03-29 13:31:02 +0000
commit5dc613894d6fdd995100a619566823221114dab1 (patch)
tree15d0478c896f198fa702883c50474efaffcf2a11 /src/lib.rs
parentfeature: Implement CLI (diff)
downloadwhirl-5dc613894d6fdd995100a619566823221114dab1.tar.xz
whirl-5dc613894d6fdd995100a619566823221114dab1.zip
feature: Use TOML as config instead of environment variables
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index ebb37ce..3981516 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -6,4 +6,6 @@ extern crate log;
pub mod db;
pub mod server;
-pub mod utils; \ No newline at end of file
+pub mod utils;
+pub mod cli;
+pub mod config;