Alex Ellis (VMware) 63e948fce1 Add sample function
Signed-off-by: Alex Ellis (VMware) <alexellis2@gmail.com>
2018-10-25 12:57:02 +01:00

15 lines
216 B
Go

package function
import (
"fmt"
"github.com/nishakm/strategy_generator/pkg"
)
// Handle a serverless request
func Handle(req []byte) string {
statement := pkg.Generate()
return fmt.Sprintf("%s", statement)
}