awf-help 0.1.1

Actix web flask use proc macros
Documentation

This is documentation for the awf-help crate.

Examples

Cargo.toml add

[dependencies]
awf-help = "0.1"
actix-web = "1.0"
inventory = "0.1"

import namespace

extern crate awf_help;
use awf_help::{config, route, ServiceFactory};

config webservice

HttpServer::new(|| App::new().configure(config))
.bind("127.0.0.1:8000")
.expect("Can not bind to port 8000")
.run()
.unwrap();

add decorator

#[route(GET, "/")]
fn greet(req: HttpRequest) -> String {
let name = req.match_info().get("name").unwrap_or("World");
format!("Hello {}!", &name)
}
#[route(POST, "/")]
#[route(HEAD, "/")]