aboutsummaryrefslogtreecommitdiffhomepage
path: root/dhall/ServiceDependency.dhall
blob: 9cad9b4db6e225fd28266f0e13ccf52815425727 (plain) (blame)
1
2
3
4
5
6
7
8
9
let ServiceDependency =
      < Addon : { addon_id : Text } | Application : { app_id : Text } >

let addon = λ(addon_id : Text) → ServiceDependency.Addon { addon_id = addon_id }

let application =
      λ(app_id : Text) → ServiceDependency.Application { app_id = app_id }

in  { Type = ServiceDependency, addon = addon, application = application }