Split to multiproject

This commit is contained in:
2022-05-16 21:42:11 +03:00
parent 0266d4b06b
commit 03b4cfb3bf
35 changed files with 70 additions and 8 deletions

View File

@ -0,0 +1,5 @@
{ vhost : Text
, username : Text
, password : ../Password/Type.dhall
, host : Text
}

View File

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

View File

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

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 @@
< Password : Text | File : Text >

View File

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

View File

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

View File

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

View File

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

View File

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