jinx_proxy/
lib.rs

1pub mod cert;
2pub mod conf;
3pub mod docker;
4pub mod file;
5pub mod nginx;
6pub mod service;
7pub mod targz;
8
9// logs errors and exits
10#[macro_export]
11macro_rules! log_exit {
12    ($($x:expr),+) => {
13        {
14            $(eprintln!("[ERROR] {}", $x);)+
15            std::process::exit(1)
16        }
17    };
18}