Skip to content

Commit b519ae6

Browse files
committed
add http methods
1 parent 1848815 commit b519ae6

File tree

1 file changed

+5
-3
lines changed
  • src/main/kotlin/com/github/oldmegit/goframehelper/apiTagValueUtil

1 file changed

+5
-3
lines changed

src/main/kotlin/com/github/oldmegit/goframehelper/apiTagValueUtil/Method.kt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ object Method : TagValue {
66
"get" to "",
77
"put" to "",
88
"post" to "",
9-
"patch" to "",
109
"delete" to "",
11-
"options" to "",
10+
"patch" to "",
1211
"head" to "",
12+
"connect" to "",
13+
"options" to "",
14+
"trace" to "",
15+
"all" to ""
1316
)
14-
1517
override val separator: String
1618
get() = ","
1719
}

0 commit comments

Comments
 (0)