25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 

17 satır
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().