mirror of
https://github.com/mitchell/shortnr.git
synced 2025-07-03 02:06:08 +00:00
8 lines
196 B
Elixir
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
|