feat: add fission_simple_function composite resource

This commit is contained in:
Naeel
2026-04-20 13:35:57 +03:00
parent 01df1498d6
commit ec23ddc0a6
6 changed files with 794 additions and 0 deletions
@@ -0,0 +1,12 @@
package main
import (
"net/http"
)
// Handler — точка входа для fission go-env.
func Handler(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
_, _ = w.Write([]byte(`{"status":"processed"}`))
}