diff options
author | Hussein Ait-Lahcen <hussein.ait-lahcen@fretlink.com> | 2018-11-19 15:51:21 +0100 |
---|---|---|
committer | Hussein Ait-Lahcen <hussein.ait-lahcen@fretlink.com> | 2018-11-20 17:29:11 +0100 |
commit | 77e27a11c31fee82c2ff30613bc832f5171fa845 (patch) | |
tree | ca5b2bc2ea4c15d91476436ca4376108f5a78d88 /dhall/server/service/Service.dhall | |
parent | 6bbc5a167fb43110a5b16746c112298f392be2b8 (diff) | |
download | ansible-kong-app-77e27a11c31fee82c2ff30613bc832f5171fa845.tar.gz ansible-kong-app-77e27a11c31fee82c2ff30613bc832f5171fa845.tar.zst ansible-kong-app-77e27a11c31fee82c2ff30613bc832f5171fa845.zip |
add dhall interface
Diffstat (limited to 'dhall/server/service/Service.dhall')
-rw-r--r-- | dhall/server/service/Service.dhall | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dhall/server/service/Service.dhall b/dhall/server/service/Service.dhall new file mode 100644 index 0000000..f238553 --- /dev/null +++ b/dhall/server/service/Service.dhall | |||
@@ -0,0 +1,5 @@ | |||
1 | let Plugin = ./plugin/Plugin.dhall | ||
2 | |||
3 | in let Route = ./route/Route.dhall | ||
4 | |||
5 | in { name : Text, url : Text, plugins : List Plugin, routes : List Route } | ||