aboutsummaryrefslogtreecommitdiff
path: root/src/Msg.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/Msg.elm')
-rw-r--r--src/Msg.elm13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Msg.elm b/src/Msg.elm
new file mode 100644
index 0000000..4b7d32e
--- /dev/null
+++ b/src/Msg.elm
@@ -0,0 +1,13 @@
+module Msg exposing
+ ( Msg(..)
+ )
+
+import Time exposing (Time)
+
+import Keyboard.Extra as Keyboard
+
+type Msg =
+ NoOp
+ | Time Time
+ | Keyboard Keyboard.Msg
+ | Transform