mirror of
https://github.com/openai/codex.git
synced 2026-04-26 07:35:29 +00:00
19 lines
367 B
Rust
19 lines
367 B
Rust
#![warn(uncommented_anonymous_literal_argument)]
|
|
|
|
struct Client;
|
|
|
|
impl Client {
|
|
fn set_flag(&self, enabled: bool) {}
|
|
}
|
|
|
|
fn create_openai_url(base_url: Option<String>, retry_count: usize) -> String {
|
|
let _ = (base_url, retry_count);
|
|
String::new()
|
|
}
|
|
|
|
fn main() {
|
|
let client = Client;
|
|
let _ = create_openai_url(None, 3);
|
|
client.set_flag(true);
|
|
}
|