mirror of
https://github.com/versia-pub/activitypub.git
synced 2025-12-06 14:48:19 +01:00
13 lines
179 B
Rust
13 lines
179 B
Rust
|
|
use url::Url;
|
||
|
|
|
||
|
|
pub enum LysandType {
|
||
|
|
User
|
||
|
|
}
|
||
|
|
|
||
|
|
pub struct User {
|
||
|
|
public_key: String,
|
||
|
|
id: String,
|
||
|
|
uri: Url,
|
||
|
|
created_at: String,
|
||
|
|
display_name: Option<String>
|
||
|
|
}
|