blob: f0530d853e297ffff3f8118211d3667bbf3f5adb (
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
26
27
28
29
|
module Struct.ServerReply exposing (Type(..))
-- Elm -------------------------------------------------------------------------
-- -------------------------------------------------------------------
import Struct.BattleSummary
--------------------------------------------------------------------------------
-- TYPES -----------------------------------------------------------------------
--------------------------------------------------------------------------------
type Type =
Okay
| SetID String
| SetUsername String
| SetBattles
(
(List Struct.BattleSummary.Type),
(List Struct.BattleSummary.Type),
(List Struct.BattleSummary.Type)
)
--------------------------------------------------------------------------------
-- LOCAL -----------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- EXPORTED --------------------------------------------------------------------
--------------------------------------------------------------------------------
|