S Riemersma
S Riemersma
``` package main import ( "fmt" "github.com/gin-contrib/gzip" "github.com/gin-gonic/gin" "log" "net/http" "time" ) func main() { r := gin.Default() r.Use(func(c *gin.Context) { c.Writer.Header().Add("Vary", "Origin") }, gzip.Gzip(gzip.DefaultCompression)) r.GET("/ping", func(c *gin.Context) { c.String(http.StatusOK,...
**Author**: ### Summary of the feature being proposed Adding support to use serverlessworkflow definitions as DSL for temporal ### What value does this feature bring to Temporal? we can use...