unleash-proxy 0.1.0

An https://unleash.github.io/ web proxy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Copyright 2020-2022 Cognite AS
//!
//! A default configured proxy that should work for many common deployments.
//!
//! To configure a custom proxy, including custom feature flags, tracing etc, see `unleash_proxy_rust::main`.
#![warn(clippy::all)]

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    // Deployment specific:
    // TODO: Add tracing
    // TODO: Add prometheus
    // TODO: Add healthz route control
    env_logger::init();
    unleash_proxy::main().await
}