diff options
| author | A Farzat <a@farzat.xyz> | 2026-02-13 19:50:52 +0300 |
|---|---|---|
| committer | A Farzat <a@farzat.xyz> | 2026-02-13 19:59:25 +0300 |
| commit | edf46d8965752725ef3305c9d01decc038457db0 (patch) | |
| tree | a5fc876f65dc53f350a58d3816c41942dc3ce570 /src/main.rs | |
| parent | 57bc69a7f9af497526695e5a0bfbc60939f667e9 (diff) | |
| download | safaribooks-rs-edf46d8965752725ef3305c9d01decc038457db0.tar.gz safaribooks-rs-edf46d8965752725ef3305c9d01decc038457db0.zip | |
Create the basic directory structure for epub
The directory name needs to be sanitized such that it is valid on all
major Operating systems and filesystems. This includes replacing invalid
characters and limiting the filename to 255 bytes.
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index d393a55..b963850 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,6 +2,7 @@ mod cli; mod config; mod cookies; mod display; +mod epub; mod http_client; mod orly; |
