1 /** 2 * Copyright © Yurai Web Framework 2021 3 * License: MIT (https://github.com/YuraiWeb/yurai/blob/main/LICENSE) 4 * Author: Jacob Jensen (bausshf) 5 */ 6 module yurai.controllers.httpattributes; 7 8 public: 9 struct HttpDefault 10 { 11 } 12 13 struct HttpMandatory 14 { 15 } 16 17 struct HttpGet 18 { 19 } 20 21 struct HttpPost 22 { 23 } 24 25 struct HttpPut 26 { 27 } 28 29 struct HttpDelete 30 { 31 } 32 33 struct HttpPatch 34 { 35 } 36 37 struct HttpOptions 38 { 39 } 40 41 struct HttpHead 42 { 43 } 44 45 struct HttpConnect 46 { 47 } 48 49 struct HttpTrace 50 { 51 } 52 53 struct HttpIgnore 54 { 55 } 56 57 struct HttpQuery 58 { 59 } 60 61 struct HttpForm 62 { 63 } 64 65 struct HttpPath 66 { 67 } 68 69 struct HttpRoute 70 { 71 string name; 72 }