blob: c8bbae649d58c657a28684ec8971c9596fb39baa (
plain)
1
2
3
4
5
6
7
8
9
10
|
-record(request, {
method :: gleam@http:method(),
headers :: list({binary(), binary()}),
body :: any(),
scheme :: gleam@http:scheme(),
host :: binary(),
port :: gleam@option:option(integer()),
path :: binary(),
'query' :: gleam@option:option(binary())
}).
|