tandem-server 0.7.0

HTTP server for Tandem engine APIs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2026 Frumu LTD
// Licensed under the Business Source License 1.1

use crate::http::AppState;
use axum::{
    extract::{Path, Query, State},
    http::StatusCode,
    response::{Html, IntoResponse, Response},
    routing::get,
    Extension, Json, Router,
};
use tandem_types::{RequestPrincipal, TenantContext};

include!("config_providers_parts/part01.rs");
include!("config_providers_parts/part02.rs");
include!("config_providers_parts/part03.rs");
include!("config_providers_parts/part04.rs");
include!("config_providers_parts/part05.rs");