Initial commit

This commit is contained in:
2021-10-25 19:04:24 +03:00
commit c200e5c98c
27 changed files with 690 additions and 0 deletions

5
dhall/AMQP/Type.dhall Normal file
View File

@ -0,0 +1,5 @@
{ vhost : Text
, username : Text
, password : Text
, host : Text
}

4
dhall/AMQP/default.dhall Normal file
View File

@ -0,0 +1,4 @@
{ vhost = "/"
, username = "guest"
, host = "localhost"
}

1
dhall/AMQP/package.dhall Normal file
View File

@ -0,0 +1 @@
{ Type = ./Type.dhall, default = ./default.dhall }

4
dhall/Fetcher/Type.dhall Normal file
View File

@ -0,0 +1,4 @@
{ subreddit : Text
, entries : Natural
, qualifier : Optional ../Qualifier/Type.dhall
}

View File

@ -0,0 +1,3 @@
{ entries = 50
, qualifier = None ../Qualifier/Type.dhall
}

View File

@ -0,0 +1 @@
{ Type = ./Type.dhall, default = ./default.dhall }

View File

@ -0,0 +1 @@
< Top | Controversial >

3
dhall/Type.dhall Normal file
View File

@ -0,0 +1,3 @@
{ amqp : ./AMQP/Type.dhall
, fetchers : List ./Fetcher/Type.dhall
}

1
dhall/default.dhall Normal file
View File

@ -0,0 +1 @@
{ amqp = ./AMQP/default.dhall }

5
dhall/package.dhall Normal file
View File

@ -0,0 +1,5 @@
{ Type = ./Type.dhall
, default = ./default.dhall
, AMQP = ./AMQP/package.dhall
, Fetcher = ./Fetcher/package.dhall
}