aboutsummaryrefslogtreecommitdiff
path: root/dhall/types/Resume.dhall
blob: 20f365fc996ceb88c3bb647d3d59a5f2319cb088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
let Location = ./Location.dhall

let Link = ./Link.dhall

in  { Type =
        { name : Text
        , tagline : Text
        , location : Location.Type
        , hnLinks : List Link.Type
        }
    , default =
      { name = "Xe Iaso"
      , tagline = "Archmage of Infrastructure"
      , location = Location::{
        , city = "Ottawa"
        , stateOrProvince = "ON"
        , country = "CAN"
        }
      , hnLinks = [] : List Link.Type
      }
    }