fixup: update comment for optional api.Ctx

This commit is contained in:
Adrien Marquès 2021-04-19 22:15:34 +02:00
parent e44dab4bc9
commit b88a4439c8
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@ type Handler struct {
// - `outputStruct` is a struct{} containing a field for each service output (with valid reflect.Type) // - `outputStruct` is a struct{} containing a field for each service output (with valid reflect.Type)
// //
// Special cases: // Special cases:
// - a first optional input parameter of type `api.Ctx` can be added
// - it there is no input, `inputStruct` must be omitted // - it there is no input, `inputStruct` must be omitted
// - it there is no output, `outputStruct` must be omitted // - it there is no output, `outputStruct` must be omitted
func Build(fn interface{}, service config.Service) (*Handler, error) { func Build(fn interface{}, service config.Service) (*Handler, error) {