mirror of
https://github.com/logos-co/nomos-node.git
synced 2026-08-31 03:21:15 +00:00
5 lines
103 B
Rust
5 lines
103 B
Rust
pub trait FromSettings {
|
|
type Settings;
|
|
fn from_settings(settings: &Self::Settings) -> Self;
|
|
}
|