A basic chabot application that downloads article from one newspaper have been added. It can download html pages and is called with !hmtl ArticleLocation have been refactored to own it's internal data.
11 lines
160 B
Rust
11 lines
160 B
Rust
//! Provides a matrix chatbot to download newspaper articles
|
|
|
|
mod cli;
|
|
pub use cli::run;
|
|
|
|
mod chatbot;
|
|
use chatbot::Chatbot;
|
|
|
|
mod handlers;
|
|
use handlers::Html;
|