Current section
Files
Jump to
Current section
Files
lib/tus_client/tus_client_behaviour.ex
defmodule TusClient.Behaviour do
@moduledoc false
@callback upload(
binary(),
binary(),
list(
{:metadata, binary()}
| {:max_retries, integer()}
| {:chunk_len, integer()}
| {:headers, list()}
| {:ssl, list()}
| {:follow_redirect, boolean()}
)
) :: {:ok, binary} | {:error, any()}
end