aboutsummaryrefslogtreecommitdiff
path: root/dhall/types/Config.dhall
diff options
context:
space:
mode:
Diffstat (limited to 'dhall/types/Config.dhall')
-rw-r--r--dhall/types/Config.dhall4
1 files changed, 4 insertions, 0 deletions
diff --git a/dhall/types/Config.dhall b/dhall/types/Config.dhall
index 245c645..21e541a 100644
--- a/dhall/types/Config.dhall
+++ b/dhall/types/Config.dhall
@@ -2,6 +2,8 @@ let Person = ./Person.dhall
let Author = ./Author.dhall
+let Character = ./Character.dhall
+
let Job = ./Job.dhall
let Link = ./Link.dhall
@@ -34,6 +36,7 @@ in { Type =
, notableProjects : List Link.Type
, contactLinks : List Link.Type
, pronouns : List PronounSet.Type
+ , characters : List Character.Type
}
, default =
{ signalboost = [] : List Person.Type
@@ -49,5 +52,6 @@ in { Type =
, notableProjects = [] : List Link.Type
, contactLinks = [] : List Link.Type
, pronouns = [] : List PronounSet.Type
+ , characters = [] : List Character.Type
}
}