aboutsummaryrefslogtreecommitdiff
path: root/src/app/poke.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/poke.rs')
-rw-r--r--src/app/poke.rs26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/app/poke.rs b/src/app/poke.rs
index eddb85e..ef5f882 100644
--- a/src/app/poke.rs
+++ b/src/app/poke.rs
@@ -29,7 +29,7 @@ pub async fn the_cloud() -> Result<()> {
async fn bing() -> Result<()> {
let cli = reqwest::Client::new();
cli.get("https://www.bing.com/ping")
- .query(&[("sitemap", "https://christine.website/sitemap.xml")])
+ .query(&[("sitemap", "https://xeiaso.net/sitemap.xml")])
.header("User-Agent", crate::APPLICATION_NAME)
.send()
.await?
@@ -42,7 +42,7 @@ async fn bing() -> Result<()> {
async fn google() -> Result<()> {
let cli = reqwest::Client::new();
cli.get("https://www.google.com/ping")
- .query(&[("sitemap", "https://christine.website/sitemap.xml")])
+ .query(&[("sitemap", "https://xeiaso.net/sitemap.xml")])
.header("User-Agent", crate::APPLICATION_NAME)
.send()
.await?
@@ -56,17 +56,17 @@ async fn cloudflare() -> Result<()> {
let cli = cfcache::Client::new(env::var("CF_TOKEN")?, env::var("CF_ZONE_ID")?)?;
cli.purge(
vec![
- "https://christine.website/sitemap.xml",
- "https://christine.website",
- "https://christine.website/blog",
- "https://christine.website/blog.atom",
- "https://christine.website/blog.json",
- "https://christine.website/blog.rss",
- "https://christine.website/gallery",
- "https://christine.website/talks",
- "https://christine.website/resume",
- "https://christine.website/signalboost",
- "https://christine.website/feeds",
+ "https://xeiaso.net/sitemap.xml",
+ "https://xeiaso.net",
+ "https://xeiaso.net/blog",
+ "https://xeiaso.net/blog.atom",
+ "https://xeiaso.net/blog.json",
+ "https://xeiaso.net/blog.rss",
+ "https://xeiaso.net/gallery",
+ "https://xeiaso.net/talks",
+ "https://xeiaso.net/resume",
+ "https://xeiaso.net/signalboost",
+ "https://xeiaso.net/feeds",
]
.into_iter()
.map(|i| i.to_string())