mirror of
https://github.com/0xMassi/webclaw.git
synced 2026-06-22 02:38:06 +02:00
19 lines
578 B
Rust
19 lines
578 B
Rust
|
|
//! HTTP route handlers.
|
||
|
|
//!
|
||
|
|
//! The OSS server exposes a deliberately small surface that mirrors the
|
||
|
|
//! hosted-API JSON shapes where the underlying capability exists in the
|
||
|
|
//! OSS crates. Endpoints that depend on private infrastructure
|
||
|
|
//! (anti-bot bypass with stealth Chrome, JS rendering at scale,
|
||
|
|
//! per-user auth, billing, async job queues, agent loops) are
|
||
|
|
//! intentionally not implemented here. Use api.webclaw.io for those.
|
||
|
|
|
||
|
|
pub mod batch;
|
||
|
|
pub mod brand;
|
||
|
|
pub mod crawl;
|
||
|
|
pub mod diff;
|
||
|
|
pub mod extract;
|
||
|
|
pub mod health;
|
||
|
|
pub mod map;
|
||
|
|
pub mod scrape;
|
||
|
|
pub mod summarize;
|