blob: 198833a3e077d528f36a7c2ed22d064ee6a460e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
module ElmModule.Subscriptions exposing (..)
-- Elm -------------------------------------------------------------------------
-- Roster Editor ---------------------------------------------------------------
import Struct.Model
import Struct.Event
--------------------------------------------------------------------------------
-- LOCAL -----------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- EXPORTED --------------------------------------------------------------------
--------------------------------------------------------------------------------
subscriptions : Struct.Model.Type -> (Sub Struct.Event.Type)
subscriptions model = Sub.none
|