| summaryrefslogtreecommitdiff | 
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2021-12-26 17:13:33 +0100 | 
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2021-12-26 17:13:33 +0100 | 
| commit | 9c46df53ad401e060664aafe8fdfbcb9a3da5731 (patch) | |
| tree | cbe3e412bc04e322ddab5ca52bdb776c63b3fdc2 /src/ElmModule/Subscriptions.elm | |
Initial commit.
Diffstat (limited to 'src/ElmModule/Subscriptions.elm')
| -rw-r--r-- | src/ElmModule/Subscriptions.elm | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/src/ElmModule/Subscriptions.elm b/src/ElmModule/Subscriptions.elm new file mode 100644 index 0000000..c2b9fbe --- /dev/null +++ b/src/ElmModule/Subscriptions.elm @@ -0,0 +1,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 | 


