Something went wrong. Try again.
A lexicon-driven AppView for ATProto.
Something went wrong. Try again.
Rust
12345678910111213141516171819202122mod atproto_api;mod context;pub mod db_api;mod execute;mod http_api;pub mod record;pub(crate) mod sandbox;pub mod scripts;pub(crate) mod tid;mod xrpc_api;
#[allow(unused_imports)]pub(crate) use context::SpaceContext;pub(crate) use execute::{execute_procedure_script, execute_query_script};pub(crate) use sandbox::validate_script;pub use scripts::{ LabelAppliedEvent, LabelHookOutcome, ParsedTrigger, RecordEventPayload, ResolvedScript, ScriptLanguage, ScriptRow, TriggerKind, resolve, resolve_record_event, run_label_applied_script, run_record_event_once, run_record_event_script, trigger_for_label_uri,};