1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) 2022-2023 Yuki Kishimoto
// Distributed under the MIT software license

//! Entity

/// Nostr [`Entity`]
#[derive(Debug, Clone, Eq, PartialEq, Ord, PartialOrd, Serialize, Deserialize)]
pub enum Entity {
    /// Account
    Account,
    /// Channel
    Channel,
    /// Unknown
    Unknown,
}