2026-01-27 14:44:10 +01:00
|
|
|
use proxy_common::ProxyStartupParam;
|
2026-01-20 20:26:44 +01:00
|
|
|
use rnex_core::common::setup;
|
|
|
|
|
|
|
|
|
|
#[tokio::main]
|
|
|
|
|
async fn main() {
|
|
|
|
|
setup();
|
|
|
|
|
|
2026-01-27 14:44:10 +01:00
|
|
|
proxy::start_insecure(
|
|
|
|
|
ProxyStartupParam::new(proxy_common::ProxyType::Insecure)
|
|
|
|
|
.expect("unable to get startup parameters"),
|
|
|
|
|
)
|
|
|
|
|
.await;
|
2026-01-20 20:26:44 +01:00
|
|
|
}
|