package pgx

  1. Overview
  2. Docs

Source file access.ml

1
2
3
4
5
6
7
8
9
type t =
  | Read_write
  | Read_only
[@@deriving sexp]

let to_string = function
  | Read_write -> "read write"
  | Read_only -> "read only"
;;
OCaml

Innovation. Community. Security.