corky-google 0.29.0

Corky Google Workspace, Calendar, Search Console, and Tasks commands
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Search Console `urlInspection.index.inspect` — per-URL coverage.

use anyhow::{Result, bail};

pub type InspectResponse = serde_json::Value;

pub fn inspect_url(
    _token: &str,
    _site_url: &str,
    _inspection_url: &str,
) -> Result<InspectResponse> {
    bail!("gsc urlInspection.index.inspect not yet implemented")
}