diff options
author | Vika <vika@fireburn.ru> | 2024-08-26 13:53:00 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2024-08-26 14:36:57 +0300 |
commit | 1a4a9b85b9bf9ae8650a2cd68416476c7d1770b3 (patch) | |
tree | 38c4b3dca1dd9a204390ccaa61584d61ecdf5d60 /util/src | |
parent | 5218889b43c4ee3eafee1c9871dbeba2887ded83 (diff) | |
download | kittybox-1a4a9b85b9bf9ae8650a2cd68416476c7d1770b3.tar.zst |
Remove IndiewebEndpoints type
It was never used much anyway.
Diffstat (limited to 'util/src')
-rw-r--r-- | util/src/lib.rs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/util/src/lib.rs b/util/src/lib.rs index a919fd8..f92ee1b 100644 --- a/util/src/lib.rs +++ b/util/src/lib.rs @@ -4,16 +4,6 @@ //! //! Some things are gated behind features, namely: //! - `fs` - enables use of filesystem-related utilities -use serde::{Deserialize, Serialize}; - -#[derive(Clone, Serialize, Deserialize)] -pub struct IndiewebEndpoints { - pub authorization_endpoint: String, - pub token_endpoint: String, - pub webmention: Option<String>, - pub microsub: Option<String>, -} - #[derive(Debug, Default)] /// Common types of webmentions. pub enum MentionType { |