pillow 0.1.3

A minimalist web framework for rust
Documentation

Pillow Framework

Is a minimalist framework for rust inspired in Expressjs

Getting started

Add dependencie

cargo add pillow
let app = Router::new();

app.get("/", |request, response| response.view("index.html"));

app.listen("5000");

Documentation

Lincese

MIT Lincese

Contribution

For developers

clone project

git clone github.com/SummaryPuppet/pillow_framework.git
cd sunny_framework

and execute

cargo run