Skip to main content

tuitbot_core/
lib.rs

1/// Core library for the Tuitbot autonomous X growth assistant.
2///
3/// This crate contains all business logic including configuration management,
4/// error types, startup helpers, and shared types used by the CLI binary.
5pub mod automation;
6pub mod config;
7pub mod content;
8pub mod error;
9pub mod llm;
10pub mod safety;
11pub mod scoring;
12pub mod startup;
13pub mod storage;
14pub mod strategy;
15pub mod x_api;
16
17pub use error::*;
18
19/// Returns the version of the tuitbot-core library.
20pub fn version() -> &'static str {
21    env!("CARGO_PKG_VERSION")
22}