summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/api/guzzle.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/api/guzzle.rs b/src/api/guzzle.rs
index c5093da..9ad6ad6 100644
--- a/src/api/guzzle.rs
+++ b/src/api/guzzle.rs
@@ -7,7 +7,8 @@ struct RandomTeawieResponse {
url: String,
}
-const GUZZLE: &str = "https://api.mydadleft.me";
+// TODO: read this from an env var
+const GUZZLE: &str = "https://api.getchoo.com";
const RANDOM_TEAWIE: &str = "/random_teawie";
pub async fn random_teawie() -> Result<String> {