asimov-protocol 25.3.2

ASIMOV Software Development Kit (SDK) for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// This is free and unencumbered software released into the public domain.

use iroh::endpoint::{
    Builder,
    presets::{N0, Preset},
};

/// The default preset for ASIMOV.
#[derive(Copy, Clone, Default, Debug)]
pub struct DefaultPreset;

impl Preset for DefaultPreset {
    fn apply(self, builder: Builder) -> Builder {
        N0.apply(builder) // TODO: customize this
    }
}