asimov-server 25.1.0

ASIMOV Software Development Kit (SDK) for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// This is free and unencumbered software released into the public domain.

#![allow(unused_imports)]

use axum::Router;

/// See: https://platform.openai.com/docs/api-reference/realtime
#[cfg(not(feature = "unstable"))]
pub fn routes() -> Router {
    Router::new()
}

/// See: https://platform.openai.com/docs/api-reference/realtime
#[cfg(feature = "unstable")]
pub fn routes() -> Router {
    Router::new() // TODO
}