about summary refs log tree commit diff stats
path: root/elm/cyoa/src/Main.elm
diff options
context:
space:
mode:
Diffstat (limited to 'elm/cyoa/src/Main.elm')
-rw-r--r--elm/cyoa/src/Main.elm15
1 files changed, 15 insertions, 0 deletions
diff --git a/elm/cyoa/src/Main.elm b/elm/cyoa/src/Main.elm
new file mode 100644
index 0000000..d739d22
--- /dev/null
+++ b/elm/cyoa/src/Main.elm
@@ -0,0 +1,15 @@
+module Main exposing (main)
+
+import Browser
+import Types exposing (Model, Msg)
+import Game exposing (init, update)
+import View exposing (view)
+
+--| Main entry point
+main : Program () Model Msg
+main =
+    Browser.sandbox
+        { init = init
+        , update = update
+        , view = view
+        } 
\ No newline at end of file