gabrielsimmer.com/dhall/types.dhall

18 lines
196 B
Plaintext
Raw Normal View History

2023-07-21 23:15:14 +01:00
let Url : Type =
{ display_text : Text
, link : Text
}
let Project : Type =
{ name : Text
, description : Text
, link : Url
, languages : List Text
}
in
{ Project
, Url
}