forked from cadey/xesite
18 lines
343 B
Plaintext
18 lines
343 B
Plaintext
|
let Location = ./Location.dhall
|
||
|
|
||
|
in { Type =
|
||
|
{ name : Text
|
||
|
, url : Optional Text
|
||
|
, tagline : Text
|
||
|
, location : Location.Type
|
||
|
, defunct : Bool
|
||
|
}
|
||
|
, default =
|
||
|
{ name = ""
|
||
|
, url = None Text
|
||
|
, tagline = ""
|
||
|
, location = Location::{=}
|
||
|
, defunct = False
|
||
|
}
|
||
|
}
|