prabirshrestha / trillium-send-file

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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
    });
}

About

License:Other


Languages

Language:Rust 100.0%