doubleo7/src/main.rs

13 lines
208 B
Rust
Raw Normal View History

pub mod swear_cleanup;
pub mod deep_research;
#[tokio::main]
pub async fn main() -> anyhow::Result<()> {
// swear_cleanup::starter::run().await?;
deep_research::starter::start().await?;
Ok(())
}