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

```bash
cargo add pillow
```

```rust
let app = Router::new();

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

app.listen("5000");
```

## Documentation

* [docs.rs]https://docs.rs/pillow/latest/pillow/

## Lincese

MIT Lincese

## Contribution

### For developers

clone project

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

and execute

```bash
cargo run
```