mooncell 0.1.3

A DNS-over-HTTPS server
1
2
3
4
5
6
7
8
9
10
//! Project configuration schema and providers
//!
//! The key component is the trait `Config`: anything that provides configuration for
//! the application to run, must implement it.
//! At the moment, only `CLI` implements it, as the configuration is provided as command line
//! interface arguments.

pub mod cli;
pub mod config;
mod defaults;