From 33c44ece20bac2bdbe2c426e98b8750ba115199c Mon Sep 17 00:00:00 2001 From: trivernis Date: Wed, 13 Dec 2023 17:28:28 +0100 Subject: [PATCH] Fix default API endpoint --- src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.rs b/src/client.rs index 2c52674..7f6932d 100644 --- a/src/client.rs +++ b/src/client.rs @@ -10,7 +10,7 @@ use serde::Serialize; use std::collections::HashMap; use std::fmt::{Debug, Display}; -pub static DEFAULT_API_ENDPOINT: &str = "https://staging.animethemes.moe/api"; +pub static DEFAULT_API_ENDPOINT: &str = "https://api.animethemes.moe"; pub static DEFAULT_VIDEO_ENDPOINT: &str = "https://animethemes.moe/video/"; #[derive(Clone, Debug)]