mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-05-11 06:39:08 -07:00
server: mcp + global: refactor
This commit is contained in:
3
crates/brk_core/src/traits/mod.rs
Normal file
3
crates/brk_core/src/traits/mod.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
mod printable;
|
||||
|
||||
pub use printable::*;
|
||||
4
crates/brk_core/src/traits/printable.rs
Normal file
4
crates/brk_core/src/traits/printable.rs
Normal file
@@ -0,0 +1,4 @@
|
||||
pub trait Printable {
|
||||
fn to_string() -> &'static str;
|
||||
fn to_possible_strings() -> &'static [&'static str];
|
||||
}
|
||||
Reference in New Issue
Block a user