mirror of
https://github.com/0xMassi/webclaw.git
synced 2026-06-23 02:48:06 +02:00
20 lines
615 B
Rust
20 lines
615 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 capture;
|
|
pub mod crawl;
|
|
pub mod diff;
|
|
pub mod extract;
|
|
pub mod health;
|
|
pub mod map;
|
|
pub mod scrape;
|
|
pub mod structured;
|
|
pub mod summarize;
|