mirror of
https://github.com/openai/codex.git
synced 2026-04-26 15:45:02 +00:00
11 lines
203 B
Rust
11 lines
203 B
Rust
#![warn(argument_comment_mismatch)]
|
|
|
|
fn create_openai_url(base_url: Option<String>) -> String {
|
|
let _ = base_url;
|
|
String::new()
|
|
}
|
|
|
|
fn main() {
|
|
let _ = create_openai_url(/*api_base*/ None);
|
|
}
|