Current section

Files

Jump to
postscript lib postscript operation.ex
Raw

lib/postscript/operation.ex

defmodule Postscript.Operation do
@type t ::
%__MODULE__{
method: Postscript.http_method_t(),
params: Keyword.t(),
path: String.t()
}
defstruct [method: nil, params: [], path: nil]
end