dashboard/src/Config.elm

12 lines
133 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-11-23 11:07:07 +03:00
}
type alias Flags =
Config