1
0
Fork 0
tooty/src/Update/AccountInfo.elm

17 lines
402 B
Elm

module Update.AccountInfo exposing (empty)
import Types exposing (..)
import Update.Timeline
empty : AccountInfo
empty =
{ account = Nothing
, pins = []
, timeline = Update.Timeline.empty "account-timeline"
, followers = Update.Timeline.empty "account-followers"
, following = Update.Timeline.empty "account-following"
, relationships = []
, relationship = Nothing
}