mirror of
https://github.com/fluencelabs/dashboard
synced 2025-05-30 08:01:30 +00:00
44 lines
1.1 KiB
Elm
44 lines
1.1 KiB
Elm
|
module Main exposing (..)
|
||
|
|
||
|
{-| Copyright 2020 Fluence Labs Limited
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
|
||
|
-}
|
||
|
|
||
|
import Browser exposing (Document)
|
||
|
import Config exposing (Flags)
|
||
|
import Model exposing (Model, emptyModel)
|
||
|
import Msg exposing (Msg)
|
||
|
import Subscriptions exposing (subscriptions)
|
||
|
import Update exposing (update)
|
||
|
import View exposing (view)
|
||
|
|
||
|
|
||
|
main =
|
||
|
Browser.document
|
||
|
{ init = init
|
||
|
, view = view
|
||
|
, update = update
|
||
|
, subscriptions = subscriptions
|
||
|
}
|
||
|
|
||
|
|
||
|
init : Flags -> ( Model, Cmd Msg )
|
||
|
init flags =
|
||
|
let
|
||
|
( em, initCmd ) =
|
||
|
emptyModel flags
|
||
|
in
|
||
|
( em, initCmd )
|