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 }