INTRO
The server module provides static HTTP and WebSocket server.
IO
type Req = { cmd : string,
path : string,
headers : (string*string) list, vers : string }
type Resp = { status : int,
headers : (string*string) list,
body : Word8Vector.vector }