mirror of
https://github.com/fluencelabs/dashboard
synced 2025-05-30 16:11:34 +00:00
13 lines
164 B
Elm
13 lines
164 B
Elm
module Config exposing (..)
|
|
|
|
|
|
type alias Config =
|
|
{ peerId : String
|
|
, relayId : String
|
|
, knownPeers : List String
|
|
}
|
|
|
|
|
|
type alias Flags =
|
|
Config
|