/// <summary>
 /// Sets up HTTP methods mappings.
 /// </summary>
 /// <param name="service">Service handling requests</param>
 public DefaultModule(DefaultService service) : base("/v1alpha1")
 {
     Post["/test"] = parameters =>
     {
         var body = this.Bind <InlineObject>();
         service.TestPost(Context, body);
         return(new Response {
             ContentType = ""
         });
     };
 }