diff options
author | Joris | 2016-09-04 15:52:17 +0200 |
---|---|---|
committer | Joris | 2016-09-04 15:53:32 +0200 |
commit | 8714c3befcf3f9923cf72e8d992ba6d963c0e6e7 (patch) | |
tree | e5ab35a918a95cbfee2f90dc34f3fe57fac42593 /src/Msg.elm | |
parent | cda08750ac7cdd83e73c1110800bea39928ffed9 (diff) |
Upgrade to elm 0.17.1
Diffstat (limited to 'src/Msg.elm')
-rw-r--r-- | src/Msg.elm | 13 |
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 |