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