A template for writing a composition function in Go.
To learn how to use this template:
If you just want to jump in and get started:
function-template-go with your function in go.mod,
package/crossplane.yaml, and any Go imports. (You can also do this
automatically by running the ./init.sh <function-name> script.)input/v1beta1/ to reflect your desired input (and run go generate ./...)RunFunction in fn.gofn_test.goREADME.md, to be about your function!This template uses Go, Docker, and the Crossplane CLI to build functions.
# Run code generation - see input/generate.go
$ go generate ./...
# Run tests - see fn_test.go
$ go test ./...
# Build the function's runtime image - see Dockerfile
$ docker build . --tag=runtime
# Build a function package - see package/crossplane.yaml
$ crossplane xpkg build -f package --embed-runtime-image=runtime
$ claude mcp add function-template-go \
-- python -m otcore.mcp_server <graph>