dashboard/src/Config.elm

13 lines
164 B
Elm
Raw Normal View History

2020-11-23 11:07:07 +03:00
module Config exposing (..)
2020-11-25 19:51:53 +03:00
2020-11-23 11:07:07 +03:00
type alias Config =
2020-11-25 19:51:53 +03:00
{ peerId : String
, relayId : String
2020-12-04 12:21:09 +03:00
, knownPeers : List String
2020-11-23 11:07:07 +03:00
}
type alias Flags =
Config