Current section
Files
Jump to
Current section
Files
lib/tibber_ex.ex
defmodule TibberEx do
@moduledoc """
Documentation for `TibberEx`.
"""
def priceInfo(token) do
token
|> TibberEx.Client.new()
|> TibberEx.Api.price_info()
end
def priceRating(token) do
token
|> TibberEx.Client.new()
|> TibberEx.Api.price_rating()
end
end