Skip to content

Commit

Permalink
Merge pull request #49 from Altair-Bueno/master
Browse files Browse the repository at this point in the history
fix: Replace animechan URL
  • Loading branch information
Altair-Bueno authored Aug 11, 2023
2 parents eaf0399 + 8e8c38f commit 7f7edff
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions crates/rquote-core/src/animechan/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ use crate::animechan::cached::{get_anime_list, get_quote_character, get_quote_ti

mod cached;

const ANIMECHAN_RANDOM_QUOTE: &str = "https://animechan.vercel.app/api/random";
const ANIMECHAN_10_RANDOM_QUOTE: &str = "https://animechan.vercel.app/api/quotes";
const ANIMECHAN_TITLE_QUOTE: &str = "https://animechan.vercel.app/api/quotes/anime";
const ANIMECHAN_CHARACTER_QUOTE: &str = "https://animechan.vercel.app/api/quotes/character";
const ANIMECHAN_ANIME_LIST: &str = "https://animechan.vercel.app/api/available/anime";
const ANIMECHAN_RANDOM_QUOTE: &str = "https://animechan.xyz/api/random";
const ANIMECHAN_10_RANDOM_QUOTE: &str = "https://animechan.xyz/api/quotes";
const ANIMECHAN_TITLE_QUOTE: &str = "https://animechan.xyz/api/quotes/anime";
const ANIMECHAN_CHARACTER_QUOTE: &str = "https://animechan.xyz/api/quotes/character";
const ANIMECHAN_ANIME_LIST: &str = "https://animechan.xyz/api/available/anime";

/// Type that can be Serialized and Deserialized as a valid Animechan quote. You
/// can find more information about Animechan's API
/// [here](https://animechan.vercel.app/)
/// [here](https://animechan.xyz/)
#[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
pub struct AnimechanQuote {
anime: String,
Expand Down

1 comment on commit 7f7edff

@vercel
Copy link

@vercel vercel bot commented on 7f7edff Aug 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

rquote – ./

rquote-git-release-altair-bueno.vercel.app
rquote.vercel.app
rquote-altair-bueno.vercel.app

Please sign in to comment.