mirror of
https://github.com/fluencelabs/dashboard
synced 2025-06-04 02:21:27 +00:00
10 lines
108 B
Elm
10 lines
108 B
Elm
|
module Config exposing (..)
|
||
|
|
||
|
type alias Config =
|
||
|
{ peerId: String
|
||
|
}
|
||
|
|
||
|
|
||
|
type alias Flags =
|
||
|
Config
|