mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-07-11 11:08:13 -07:00
11 lines
257 B
Rust
11 lines
257 B
Rust
use std::io;
|
|
use std::path::Path;
|
|
|
|
use super::ClientMetadata;
|
|
|
|
/// Generate Rust client from metadata
|
|
pub fn generate_rust_client(_metadata: &ClientMetadata, _output_dir: &Path) -> io::Result<()> {
|
|
// TODO: Implement Rust client generation
|
|
Ok(())
|
|
}
|