[][src]Crate warp_embed

warp-embed

Serve embedded file with warp

use warp::Filter;
use rust_embed::RustEmbed;

#[derive(RustEmbed)]
#[folder = "data"]
struct Data;

let data_serve = warp_embed::embed(&Data);

Functions

embed

Creates a Filter that serves embedded files at the base path joined by the request path.