kubeless installers

This commit is contained in:
2019-10-14 21:32:00 +02:00
parent 40a2f5dbe3
commit babc8b83d3
13 changed files with 193 additions and 46 deletions

View File

@@ -0,0 +1,10 @@
package kubeless
import (
"github.com/kubeless/kubeless/pkg/functions"
)
// Foo sample function
func Foo(event functions.Event, context functions.Context) (string, error) {
return "Hello world!", nil
}