mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01: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"
|
|
}
|