Private
Public Access
1
0
Files
Kordophone/kordophone/src/api/mod.rs

13 lines
213 B
Rust
Raw Normal View History

2024-04-20 18:17:55 -07:00
pub trait APIInterface {
fn version(&self) -> String;
}
pub struct TestClient {}
impl APIInterface for TestClient {
fn version(&self) -> String {
return "KordophoneTest-1.0".to_string()
}
}