mirror of
https://github.com/fluencelabs/dashboard
synced 2025-07-02 16:11:39 +00:00
7 lines
135 B
Elm
7 lines
135 B
Elm
![]() |
module Blueprints.Model exposing (..)
|
||
|
|
||
|
type alias Blueprint =
|
||
|
{ dependencies: List String
|
||
|
, id: String
|
||
|
, name: String
|
||
|
}
|