Pillow Framework
Is a web framework for rust
Getting started
Add dependencie
use Router;
Documentation
Lincese
MIT Lincese
Contribution
For developers
clone project
and execute
Is a web framework for rust
Add dependencie
cargo add pillow
use pillow::http::router::Router;
#[async_std::main]
fn main() {
let app = Router::new();
app.get("/", |request, response| response.view("index"));
app.listen("5000").await;
}
MIT Lincese
clone project
git clone github.com/SummaryPuppet/pillow_framework.git
cd pillow_framework
and execute
cargo run