mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-21 00:06:37 +00:00
* Updates netlink/netns * Updates x/sys, arkade and apimachinery Build passes, minor updates. Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
12 lines
407 B
Go
Generated
12 lines
407 B
Go
Generated
// Copyright (c) Alex Ellis 2017. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
// Package requests package provides a client SDK or library for
|
|
// the OpenFaaS gateway REST API
|
|
package requests
|
|
|
|
// DeleteFunctionRequest delete a deployed function
|
|
type DeleteFunctionRequest struct {
|
|
FunctionName string `json:"functionName"`
|
|
}
|