Current section
Files
Jump to
Current section
Files
lib/elixir_coincheck/api/ticker.ex
defmodule ElixirCoincheckClient.API.Ticker do
import ElixirCoincheckClient.API.Base
@spec ticker() :: binary()
def ticker() do
url = domain() <> "/ticker"
HTTPoison.get!(url)
end
end