/dhall-infra/Rule/createUdpHost.dhall
Copy path to clipboardSee the ./createTcpHost.dhall
documentation
Source
--| See the `./createTcpHost.dhall` documentation
let Rule = { Type = ./Type.dhall }
let createUdpHost
: forall (ip : Text) -> forall (port : Integer) -> Rule.Type
= \(ip : Text) -> \(port : Integer) -> ./create.dhall "udp" port ip
in createUdpHost