mirror of
https://github.com/github/codeql.git
synced 2026-05-06 14:15:17 +02:00
9 lines
142 B
Plaintext
9 lines
142 B
Plaintext
/**
|
|
* Some commonly used HTTP verbs.
|
|
*/
|
|
|
|
string httpVerb() {
|
|
result = "get" or result = "put" or
|
|
result = "post" or result = "delete"
|
|
}
|