bornhack-website/schedule/src/Messages.elm

19 lines
305 B
Elm
Raw Permalink Normal View History

module Messages exposing (Msg(..))
-- Local modules
2017-08-16 16:08:34 +00:00
import Models exposing (Day, EventInstance, FilterType)
-- External modules
import Navigation exposing (Location)
type Msg
= NoOp
| WebSocketPayload String
2017-08-16 16:08:34 +00:00
| ToggleFilter FilterType
| OnLocationChange Location
| BackInHistory