Client.elm (429B)
1 module Client exposing (main) 2 3 import Browser 4 import State exposing (init, subscriptions, update) 5 import Types exposing (Flags, Model, Msg(..)) 6 import View exposing (view) 7 8 9 main : Program Flags Model Msg 10 main = 11 Browser.application 12 { init = init 13 , onUrlRequest = UrlRequested 14 , onUrlChange = UrlChanged 15 , update = update 16 , view = view 17 , subscriptions = subscriptions 18 }