use bevy::prelude::*;
use nostr_sdk::prelude::{Event, EventId, PublicKey};
#[derive(Component, Debug)]
pub struct NostrEventId(pub EventId);
#[derive(Component, Debug)]
pub struct NostrEvent(pub Event);
#[derive(Component, PartialEq, Debug)]
pub struct NostrPublicKey(pub PublicKey);
#[derive(Component)]
pub struct DatabaseFetchEvent;
#[derive(Component)]
pub struct FetchingEvent;