minimal-webplayer/src/Msg.elm

11 lines
161 B
Elm
Raw Normal View History

2021-03-23 15:25:08 +00:00
module Msg exposing (..)
import Http
import Video
2021-03-23 15:25:08 +00:00
type Msg
= NoOp
| VideoSelected String
| VideoListLanded (Result Http.Error (List Video.Video))