o402 0.1.2

OpenAI-compatible gateway, paid with x402.
1
2
3
4
5
6
7
8
9
10
11
//! `o402` process.

#![allow(
    unused_crate_dependencies,
    reason = "the binary target only calls the library crate"
)]

#[tokio::main]
async fn main() -> Result<(), o402::AppError> {
    o402::run().await
}