trillium-send-file

Crates.iotrillium-send-file
lib.rstrillium-send-file
version0.1.0
sourcesrc
created_at2021-10-09 18:24:37.441541
updated_at2021-10-09 18:24:37.441541
descriptionsend file for trillium.rs
homepage
repositoryhttps://github.com/prabirshrestha/trillium-send-file
max_upload_size
id462872
size21,604
Prabir Shrestha (prabirshrestha)

documentation

README

trillium-send-file

Send file connection extension for trillium.rs.

Getting Started

[dependencies]
trillium = "0.2.0"
trillium-smol = "0.2.0"
trillium-send-file = { version = "0.1.0", features = ["smol"] }

Use features = ["async-std"] for async-std runtime.

Example

src/main.rs

use trillium::Conn;
use trillium_send_file::SendFileConnExt;

fn main() {
    trillium_smol::run(|conn: Conn| async move {
        conn.send_file("/tmp/file.txt".into()).await
    });
}
Commit count: 19

cargo fmt