flesh 0.0.12

Flora's LowRes Extensible Super Highway
1
2
3
4
5
6
7
8
9
10
use {
    crate::{events::EventTarget, transport::PacketTransport},
    async_trait::async_trait,
    std::ops::Deref,
};

pub mod lora;

#[async_trait]
pub trait Mode: Deref<Target = EventTarget<Vec<u8>>> + PacketTransport {}