2026-08-14 10:40:09 +00:00
|
|
|
pub mod swear_cleanup;
|
|
|
|
|
pub mod deep_research;
|
2026-08-05 12:21:38 +00:00
|
|
|
|
2026-07-31 08:21:31 +00:00
|
|
|
#[tokio::main]
|
2026-08-14 10:40:09 +00:00
|
|
|
pub async fn main() -> anyhow::Result<()> {
|
2026-08-05 12:21:38 +00:00
|
|
|
|
2026-08-14 10:40:09 +00:00
|
|
|
// swear_cleanup::starter::run().await?;
|
2026-08-05 12:21:38 +00:00
|
|
|
|
2026-08-14 10:40:09 +00:00
|
|
|
deep_research::starter::start().await?;
|
2026-08-05 12:21:38 +00:00
|
|
|
|
2026-08-14 10:40:09 +00:00
|
|
|
Ok(())
|
2026-08-05 12:21:38 +00:00
|
|
|
}
|