···11-pub mod actor;
22-pub mod admin;
33-pub mod age_assurance;
44-pub mod backup;
55-pub mod delegation;
66-pub mod discord_webhook;
71pub mod error;
88-pub mod identity;
99-pub mod moderation;
1010-pub mod notification_prefs;
112pub mod proxy;
123pub mod proxy_client;
1313-pub mod repo;
144pub mod responses;
1515-pub mod server;
1616-pub mod telegram_webhook;
1717-pub mod temp;
185pub mod validation;
1919-pub mod verification;
206217pub use error::ApiError;
228pub use proxy_client::{AtUriParts, proxy_client, validate_at_uri, validate_limit};
···11-use crate::api::error::ApiError;
22-use crate::auth::{Active, Auth, Permissive};
33-use crate::state::AppState;
11+use tranquil_pds::api::error::ApiError;
22+use tranquil_pds::auth::{Active, Auth, Permissive};
33+use tranquil_pds::state::AppState;
44use axum::{
55 Json,
66 extract::State,
···57575858 for part in scope_parts {
5959 if let Some(cid_str) = part.strip_prefix("ref:") {
6060- let cache_key = crate::cache_keys::scope_ref_key(cid_str);
6060+ let cache_key = tranquil_pds::cache_keys::scope_ref_key(cid_str);
6161 if let Some(cached) = state.cache.get(&cache_key).await {
6262 for s in cached.split_whitespace() {
6363 if !resolved_scopes.contains(&s.to_string()) {
···1313pub mod account_verified;
1414pub mod email_token;
1515pub mod extractor;
1616+pub mod reauth;
1617pub mod legacy_2fa;
1718pub mod login_identifier;
1819pub mod mfa_verified;
···11-pub mod blob;
21pub mod car;
33-pub mod commit;
44-pub mod crawl;
55-pub mod deprecated;
62pub mod firehose;
73pub mod frame;
84pub mod import;
99-pub mod listener;
1010-pub mod repo;
1111-pub mod subscribe_repos;
125pub mod util;
136pub mod verify;
1471515-pub use blob::{get_blob, list_blobs};
1616-pub use commit::{get_latest_commit, get_repo_status, list_repos};
1717-pub use crawl::{notify_of_update, request_crawl};
1818-pub use deprecated::{get_checkout, get_head};
1919-pub use repo::{get_blocks, get_record, get_repo};
2020-pub use subscribe_repos::subscribe_repos;
2121-pub use tranquil_db_traits::AccountStatus;
88+#[cfg(test)]
99+mod verify_tests;
1010+1111+pub use firehose::SequencedEvent;
2212pub use util::{
2313 RepoAccessLevel, RepoAccount, RepoAvailabilityError, assert_repo_availability,
2414 get_account_with_status,
···96969797#[test]
9898fn test_create_signed_commit_helper() {
9999- use tranquil_pds::api::repo::record::utils::create_signed_commit;
9999+ use tranquil_pds::repo_ops::create_signed_commit;
100100101101 let signing_key = SigningKey::random(&mut rand::thread_rng());
102102 let did: Did = "did:plc:testuser123456789abcdef"