verb.ml
azure-cosmos-db
azure-cosmos-db.app-config
azure-cosmos-db.utilities
1 2 3 4 5 6 7 type t = Get | Post | Put | Delete let string_of_verb = function | Get -> "GET" | Post -> "POST" | Put -> "PUT" | Delete -> "DELETE"
1 2 3 4 5 6 7
type t = Get | Post | Put | Delete let string_of_verb = function | Get -> "GET" | Post -> "POST" | Put -> "PUT" | Delete -> "DELETE"