activitypub/src/lysand/objects.rs

13 lines
179 B
Rust
Raw Normal View History

2024-05-09 23:09:10 +02:00
use url::Url;
pub enum LysandType {
User
}
pub struct User {
public_key: String,
id: String,
uri: Url,
created_at: String,
display_name: Option<String>
}