ort-openrouter-cli 0.4.6

Open Router CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! ort: Open Router CLI
//! https://github.com/grahamking/ort
//!
//! MIT License
//! Copyright (c) 2025 Graham King

pub mod chunked;
pub mod http;
pub mod socket;
pub mod tls;

/// The official one is in std
pub trait AsFd {
    fn as_fd(&self) -> i32;
}