blob: 77fb564c97cef66607e52a1247134ed48c988fdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
module Struct.Event exposing (..)
-- Elm -------------------------------------------------------------------------
import Http
-- Tonkadur --------------------------------------------------------------------
import Tonkadur.Types
-- Local Module ----------------------------------------------------------------
--------------------------------------------------------------------------------
-- TYPES -----------------------------------------------------------------------
--------------------------------------------------------------------------------
type Type =
None
| ChoiceSelected Int
| LoadStory (Result Http.Error Tonkadur.Types.State)
--------------------------------------------------------------------------------
-- LOCAL -----------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- EXPORTED --------------------------------------------------------------------
--------------------------------------------------------------------------------
|