Files
2018-08-02 17:53:23 +01:00

9 lines
142 B
Plaintext

/**
* Some commonly used HTTP verbs.
*/
string httpVerb() {
result = "get" or result = "put" or
result = "post" or result = "delete"
}