Msgs related to HTTP calls
Msgs for each HTTP response from coinmarketcap
module CoinMarketCap.Msg exposing (..)
{-| Msgs related to HTTP calls
@docs Msg
-}
import Http exposing (Error)
import CoinMarketCap.Models exposing (Crypto)
{-| Msgs for each HTTP response from coinmarketcap
-}
type Msg
= ReceiveCryptos (Result Http.Error (List Crypto))