package azure-cosmos-db

  1. Overview
  2. Docs

Source file verb.ml

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"
OCaml

Innovation. Community. Security.