選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
408 B

-module(wsHer).
-include("eWSrv.hrl").
-export_type([
response/0
]).
-type response() ::
{httpCode() | ok, body()}|
{httpCode() | ok, headers(), body()}|
{httpCode() | ok, headers(), {file, file:name_all()}|
{file, file:name_all(), wsUtil:range()}}|
{chunk, headers()}|
{chunk, headers(), body()}.
-callback handle(Method :: method(), Path :: binary(), Req :: wsReq()) -> response().