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

17 lines
402 B
Elm
Raw Permalink Normal View History

2017-05-29 14:28:01 +00:00
module Update.AccountInfo exposing (empty)
import Types exposing (..)
import Update.Timeline
empty : AccountInfo
empty =
{ account = Nothing
2021-01-12 06:08:43 +00:00
, pins = []
2017-05-29 14:28:01 +00:00
, timeline = Update.Timeline.empty "account-timeline"
, followers = Update.Timeline.empty "account-followers"
, following = Update.Timeline.empty "account-following"
, relationships = []
, relationship = Nothing
}