diff options
| author | seth <[email protected]> | 2024-05-14 01:52:09 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-05-14 01:52:09 -0400 |
| commit | 5345326de8be2d0a318600d29941d8ecdec3b097 (patch) | |
| tree | e2c77f843a7fa677b273b9d032a7e6e166a56be4 /src/api | |
| parent | 43a448fe2764551527eeea5fae50e95ba7e7d2fd (diff) | |
api: update guzzle host
Diffstat (limited to 'src/api')
| -rw-r--r-- | src/api/guzzle.rs | 3 |
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> { |
