aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorLUXEY Adrien <adrien.luxey@inria.fr>2021-08-14 19:12:18 +0200
committerLUXEY Adrien <adrien.luxey@inria.fr>2021-08-16 10:26:06 +0200
commitae9550ce23bbc85b05669fe5ec4406c8a67417ec (patch)
treebab55a23444b06ded2374dd0380b53a304426b33 /src/main.rs
parentade0090cdb4a021830439dc0d9a04b2748601ea5 (diff)
downloaddiplonat-ae9550ce23bbc85b05669fe5ec4406c8a67417ec.tar.gz
diplonat-ae9550ce23bbc85b05669fe5ec4406c8a67417ec.zip
New configuration parsing using envy. Added minimal functionnality for
the future ACME parameters. Tests written and passing. WIP: added envy dependncy and ConfigOpts structs that will constitute Diplonat's configuration WIP: ConfigOpts from_env() and validate() methods written. No API change (the env names remain unchanged)! Now need to use our new ConfigOpts struct instead of Environment, and update references to the environment variables in the code. WIP: RuntimeConfig with business logic done. Tests written, but they are all running from the same process - setting environment variables in each test produces incoherent results. Another solution for testing is needed. WIP: tests are fully written using 'from_iter' and all passing
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index ca36c26..4c4b469 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,11 +1,12 @@
-mod messages;
-mod environment;
+mod config;
mod consul;
mod consul_actor;
-mod igd_actor;
mod diplonat;
+mod environment;
mod fw;
mod fw_actor;
+mod igd_actor;
+mod messages;
use log::*;
use diplonat::Diplonat;