tandem-server 0.7.0

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

use axum::routing::post;
use axum::Router;

use super::*;

pub(super) fn apply(router: Router<AppState>) -> Router<AppState> {
    router.route("/setup/understand", post(setup_understand))
}