Application -is:module

The WAI application. Note that, since WAI 3.0, this type is structured in continuation passing style to allow for proper safe resource handling. This was handled in the past via other means (e.g., ResourceT). As a demonstration:
app :: Application
app req respond = bracket_
(putStrLn "Allocating scarce resource")
(putStrLn "Cleaning up")
(respond $ responseLBS status200 [] "Hello World")
The WAI application. Note that, since WAI 3.0, this type is structured in continuation passing style to allow for proper safe resource handling. This was handled in the past via other means (e.g., ResourceT). As a demonstration:
app :: Application
app req respond = bracket_
(putStrLn "Allocating scarce resource")
(putStrLn "Cleaning up")
(respond $ responseLBS status200 [] "Hello World")
Memory-managed wrapper type.
Holds information about the current app running on Cloud Foundry. This is returned from current.
Application metadata. The ApplicationId argument to Application data constructor can be written using usual Haskell syntax for String literals, just make sure to enable the OverloadedStrings extension. For the list of defined application IDs, see: https://xiph.org/flac/id.html. Writable optional attribute represented as a Maybe ByteString.
The JSON template for an Application resource. See: application smart constructor.
An Application resource contains the top-level configuration of an App Engine application. See: application smart constructor.
See: application smart constructor.
This is a JSON template for the Application resource. See: application smart constructor.
Creates a value of Application with the minimum fields required to make a request. Use one of the following lenses to modify other fields as desired:
Creates a value of Application with the minimum fields required to make a request. Use one of the following lenses to modify other fields as desired:
Creates a value of Application with the minimum fields required to make a request. Use one of the following lenses to modify other fields as desired:
Creates a value of Application with the minimum fields required to make a request. Use one of the following lenses to modify other fields as desired:
Phantom type indicating application traffic secrets.