gabrielsimmer.com/dhall/types.dhall
Gabriel Simmer 63438dc281
All checks were successful
Fly Deploy / Deploy app (push) Successful in 5m5s
Load and display projects, styling
2023-07-31 11:50:55 +01:00

18 lines
196 B
Plaintext

let Url : Type =
{ display_text : Text
, link : Text
}
let Project : Type =
{ name : Text
, description : Text
, link : Url
, languages : List Text
}
in
{ Project
, Url
}