All Downloads are FREE. Search and download functionalities are using the official Maven repository.

haskell-yesod.api.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
module Handler.{{classname}} where

import           Import

{{#operations}}
{{#operation}}

-- | {{summary}}
--
{{#notes}}
-- {{notes}}
{{/notes}}
{{#nickname}}
-- operationId: {{nickname}}
{{/nickname}}
{{#hasPathParams}}
{{#pathParams}}
{{#-first}}
{{vendorExtensions.x-handler}} :: {{dataType}} -- ^ {{description}}
{{/-first}}
{{^-first}}
{{vendorExtensions.x-param-indent}} -> {{dataType}} -- ^ {{description}}
{{/-first}}
{{/pathParams}}
{{vendorExtensions.x-param-indent}} -> Handler Value
{{/hasPathParams}}
{{^hasPathParams}}
{{vendorExtensions.x-handler}} :: Handler Value
{{/hasPathParams}}
{{vendorExtensions.x-handler}}{{#pathParams}} {{paramName}}{{/pathParams}} = notImplemented
{{/operation}}
{{/operations}}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy