shortnr/lib/transport/transport.ex
mitchell b699e661e2 Setup Dialyxir and Credo code analyzers:
- Refactor codebase according to analyzers
2019-12-30 21:50:39 -05:00

8 lines
196 B
Elixir

defmodule Shortnr.Transport do
@moduledoc """
This module houses generic Transport types.
"""
@type error :: {:error, {atom(), String.t()}}
@type ok_error :: {:ok, term()} | error()
end