woopsa 0.1.1

A pure Rust library for Woopsa.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
trait URL {}

pub struct WoopsaURL {
    pub protocol: String,
    pub server_address: String,
    pub route_prefix: String,
    pub woopsa_verb: String,
    pub woopsa_path: String,
    pub content_type: String,
}

impl WoopsaURL {}

impl URL for WoopsaURL {}