twiml-0.1.0.0: TwiML library for Haskell
Text.XML.Twiml.Verbs.End
Contents
Synopsis
End is not actually a TwiML verb, but this library uses it to terminate Twiml. This example
End
Twiml
module Example where import Text.XML.Twiml example = respond $ end
produces the following empty TwiML response:
<?xml version="1.0" encoding="UTF-8"?> <Response />
data End p Source
Instances
end :: End pSource