http_core.ml
sihl
sihl.app
sihl.authn
sihl.authz
sihl.cmd
sihl.configuration
sihl.core
sihl.data
sihl.email
sihl.http
sihl.log
sihl.message
sihl.middleware
sihl.queue
sihl.schedule
sihl.seed
sihl.server
sihl.session
sihl.storage
sihl.token
sihl.user
sihl.utils
sihl.web
1 2 3 4 5 6 7 8 9 10 11 12 exception Exception of string type content_type = Html | Json | Pdf [@@deriving show, eq] let show_content_type = function | Html -> "text/html" | Json -> "application/json" | Pdf -> "application/pdf" type header = string * string [@@deriving show, eq] type headers = header list [@@deriving show, eq]
1 2 3 4 5 6 7 8 9 10 11 12
exception Exception of string type content_type = Html | Json | Pdf [@@deriving show, eq] let show_content_type = function | Html -> "text/html" | Json -> "application/json" | Pdf -> "application/pdf" type header = string * string [@@deriving show, eq] type headers = header list [@@deriving show, eq]