Module Piaf.Cookies
type expiration
=[
|
`Session
|
`Max_age of int64
]
type same_site
=[
|
`None
|
`Lax
|
`Strict
]
type cookie
= string * string
module Set_cookie : sig ... end
module Cookie : sig ... end
Piaf.Cookies
type expiration
= [
| `Session |
| `Max_age of int64 |
]
type same_site
= [
| `None |
| `Lax |
| `Strict |
]
type cookie
= string * string
module Set_cookie : sig ... end
module Cookie : sig ... end