dashboard/src/Config.elm

11 lines
130 B
Elm
Raw Normal View History

2020-11-23 11:07:07 +03:00
module Config exposing (..)
type alias Config =
{ peerId: String
2020-11-23 14:27:33 +03:00
, relayId: String
2020-11-23 11:07:07 +03:00
}
type alias Flags =
Config