blob: 928155836ef5c9dc015ced67fecf3ade31ac9adf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
module Comm.Okay exposing (decoder)
-- Elm -------------------------------------------------------------------------
import Json.Decode
-- Battlemap -------------------------------------------------------------------
import Struct.ServerReply
--------------------------------------------------------------------------------
-- TYPES -----------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- LOCAL -----------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- EXPORTED --------------------------------------------------------------------
--------------------------------------------------------------------------------
decoder : (Json.Decode.Decoder Struct.ServerReply.Type)
decoder = (Json.Decode.succeed Struct.ServerReply.Okay)
|