indexnow-api 1.0.0

IndexNow API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use indexnow_api::IndexNowApi;

#[tokio::test]
async fn test_sitemaps() {
    let api = IndexNowApi::new(
        "www.example.com",
        "7be9fca90b3b4b039983fa8f06e03ee8",
    );
    let a = api.send_urls(vec![
      "https://www.example.com".to_string()

    ]).await;
    println!("{:?}", a);
}