lib

Core libraries for Radroots
git clone https://radroots.dev/git/lib.git
Log | Files | Refs | README | LICENSE

nostr_profile_relay.rs (458B)


      1 use crate::nostr_profile::NostrProfileQueryBindValues;
      2 use crate::nostr_relay::NostrRelayQueryBindValues;
      3 use radroots_types::types::IResultPass;
      4 use serde::{Deserialize, Serialize};
      5 
      6 #[derive(Clone, Deserialize, Serialize)]
      7 pub struct INostrProfileRelayRelation {
      8     pub nostr_profile: NostrProfileQueryBindValues,
      9     pub nostr_relay: NostrRelayQueryBindValues,
     10 }
     11 
     12 pub struct INostrProfileRelayResolveTs;
     13 pub type INostrProfileRelayResolve = IResultPass;