A first example as well as some documentation have been added The first example builds an article location and download the article as an html String. The documentation explains how it has been designed and what is the goal of the application as well as it's intended architecture
6 lines
147 B
Rust
6 lines
147 B
Rust
mod download;
|
|
mod self_contained_html;
|
|
|
|
pub use download::{Download, DownloadError, Downloader};
|
|
pub use self_contained_html::self_contained_html;
|