tuitbot_core/content/
mod.rs1pub mod frameworks;
9pub mod generator;
10pub mod length;
11pub mod thread;
12
13pub use frameworks::{ReplyArchetype, ThreadStructure, TweetFormat};
14pub use generator::{ContentGenerator, GenerationOutput, ThreadGenerationOutput};
15pub use length::{
16 truncate_at_sentence, tweet_weighted_len, validate_tweet_length, MAX_TWEET_CHARS,
17 TCO_URL_LENGTH,
18};
19pub use thread::{
20 deserialize_blocks_from_content, serialize_blocks_for_storage, validate_thread_blocks,
21 ThreadBlock, ThreadBlockError, ThreadBlocksPayload, MAX_MEDIA_PER_BLOCK,
22};