Add changes required for reveiw comments

Signed-off-by: Vivek Singh <vivekkmr45@yahoo.in>
This commit is contained in:
Vivek Singh
2018-09-11 12:37:34 +05:30
committed by Alex Ellis
parent cc7cfad21a
commit addc804953
4 changed files with 63 additions and 23 deletions

17
schema/describe.go Normal file
View File

@@ -0,0 +1,17 @@
// Copyright (c) OpenFaaS Author(s) 2018. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
package schema
//FunctionDescription information related to a function
type FunctionDescription struct {
Name string
Status string
Replicas int
AvailableReplicas int
InvocationCount int
Image string
EnvProcess string
URL string
AsyncURL string
}