linkshieldai 0.2.0

Rust SDK for the LinkShieldAI URL safety API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod client;
mod error;
mod parse;
mod types;

pub use client::{LinkShieldAI, LinkShieldAIBuilder, DEFAULT_BASE_URL};
pub use error::{LinkShieldAIError, Result};
pub use types::{
    BasicCheckResult, ChimeraResult, DetailedCheckResult, NsfwCheckResult, RawJson, ScanResult,
    ScanUrl,
};