Module Make.Cookie
Cookies management.
type same_site=[|`Lax|`Strict|`Undef]type t={name : string;value : string;path : string;domain : string option;secure : bool;http_only : bool;expiry : int;same_site : same_site;}
val make : ?path:string -> ?domain:string -> ?secure:bool -> ?http_only:bool -> ?expiry:int -> ?same_site:same_site -> name:string -> value:string -> unit -> tA helper function to create a new cookie with some optional parameters. The resulting cookie will not be set in the browser ands needs to be
added.